Skip to content

Commit

Permalink
fix cargo check without cargo lock due to actix http upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
ailisp committed Jun 21, 2021
1 parent 3ccc05a commit 7dcfd0d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
3 changes: 2 additions & 1 deletion chain/jsonrpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ edition = "2018"
[dependencies]
actix = "=0.11.0-beta.2"
awc = "3.0.0-beta.5"
actix-web = "4.0.0-beta.6"
actix-web = "=4.0.0-beta.6"
actix-http = "=3.0.0-beta.6"
actix-cors = { git = "https://github.com/near/actix-extras.git", branch="actix-web-4-beta.6" }
easy-ext = "0.2"
tokio = { version = "1.1", features = ["full"] }
Expand Down
3 changes: 2 additions & 1 deletion chain/jsonrpc/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ edition = "2018"

[dependencies]
awc = "3.0.0-beta.5"
actix-web = "4.0.0-beta.6"
actix-web = "=4.0.0-beta.6"
actix-http = "=3.0.0-beta.6"
futures = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
Expand Down
3 changes: 2 additions & 1 deletion chain/rosetta-rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ strum = { version = "0.20", features = ["derive"] }

awc = "3.0.0-beta.5"
actix = "=0.11.0-beta.2"
actix-web = "4.0.0-beta.6"
actix-web = "=4.0.0-beta.6"
actix-http = "=3.0.0-beta.6"
actix-cors = { git = "https://github.com/near/actix-extras.git", branch="actix-web-4-beta.6" }
futures = "0.3.5"
tokio = { version = "1.1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion chain/telemetry/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
openssl = { version = "0.10", features = ["vendored"] }
awc = "3.0.0-beta.5"
actix-web = { version = "4.0.0-beta.6", features = [ "openssl" ] }
actix-web = { version = "=4.0.0-beta.6", features = [ "openssl" ] }
futures = "0.3"
actix = "=0.11.0-beta.2"
serde = { version = "1", features = [ "derive" ] }
Expand Down

0 comments on commit 7dcfd0d

Please sign in to comment.