File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
edition = " 2021"
3
3
name = " graph-gateway"
4
- version = " 0.2.0 "
4
+ version = " 0.2.1 "
5
5
6
6
[profile .release ]
7
7
lto = " thin"
8
8
9
9
[dependencies ]
10
- actix-cors = " 0.6.0-beta.3"
11
- actix-web = " 4.0.0-beta.11"
10
+ actix-cors = " =0.6.0-beta.4"
11
+ actix-http = " =3.0.0-beta.14"
12
+ actix-web = " =4.0.0-beta.13"
12
13
async-trait = " 0.1"
13
14
bs58 = " 0.4"
14
15
cost-model = {git = " ssh://git@github.com/graphprotocol/agora.git" , rev = " 48bf329" }
@@ -28,7 +29,7 @@ postgres-openssl = "0.5"
28
29
primitive-types = " 0.8"
29
30
prometheus = " 0.13"
30
31
rand = {version = " 0.8" , features = [" small_rng" ]}
31
- receipts = {git = " ssh://git@github.com/edgeandnode/receipts.git" , rev = " ec03f80 " }
32
+ receipts = {git = " ssh://git@github.com/edgeandnode/receipts.git" , rev = " b01dd7b " , features = [ " use-neon " ] }
32
33
reqwest = {version = " 0.11" , features = [" json" ]}
33
34
secp256k1 = " 0.20"
34
35
serde = " 1.0"
Original file line number Diff line number Diff line change @@ -207,7 +207,7 @@ async fn main() {
207
207
)
208
208
. service (
209
209
web:: resource ( "/collect-receipts" )
210
- . app_data ( web:: PayloadConfig :: new ( 16_000_000 ) )
210
+ . app_data ( web:: PayloadConfig :: new ( 25_000_000 ) )
211
211
. app_data ( web:: Data :: new ( signer_key. clone ( ) ) )
212
212
. route ( web:: post ( ) . to ( handle_collect_receipts) ) ,
213
213
) ;
You can’t perform that action at this time.
0 commit comments