Skip to content

Commit

Permalink
deps: fixing quinn deps (#17)
Browse files Browse the repository at this point in the history
* deps: fixing quin deps

* deps: update lock
  • Loading branch information
giangndm authored Mar 27, 2024
1 parent 72ec08f commit 3d09423
Show file tree
Hide file tree
Showing 3 changed files with 149 additions and 3 deletions.
146 changes: 146 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/agent/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ bincode = "1.3.3"
serde = { version = "1.0.193", features = ["derive"] }
protocol = { path = "../protocol", package = "atm0s-reverse-proxy-protocol" }
protocol-ed25519 = { path = "../protocol_ed25519", package = "atm0s-reverse-proxy-protocol-ed25519", optional = true }
quinn = { git = "https://github.com/quinn-rs/quinn.git", branch = "rustls-0.22", default-features = false, features = ["runtime-async-std", "tls-rustls", "futures-io", "ring"] }
quinn = { git = "https://github.com/quinn-rs/quinn.git", branch = "rustls-0.22", features = ["runtime-async-std"]}
rustls = { version = "0.23", features = ["ring", "std"] }

[profile.release]
Expand All @@ -28,4 +28,4 @@ codegen-units = 1

[features]
default = ["binary"]
binary = ["protocol-ed25519", "tracing-subscriber"]
binary = ["protocol-ed25519", "tracing-subscriber"]
2 changes: 1 addition & 1 deletion crates/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde = { version = "1.0.193", features = ["derive"] }
metrics-dashboard = { version = "0.1.3", features = ["system"], optional = true }
poem = { version = "1.3.59", optional = true }
metrics = { version = "0.21.1" }
quinn = { git = "https://github.com/quinn-rs/quinn.git", branch = "rustls-0.22", default-features = false, features = ["runtime-async-std", "tls-rustls", "futures-io", "ring"] }
quinn = { git = "https://github.com/quinn-rs/quinn.git", branch = "rustls-0.22", features = ["runtime-async-std", "futures-io"] }
rustls = { version = "0.23", features = ["ring", "std"] }
rcgen = "0.12.0"
atm0s-sdn = { git = "https://github.com/8xFF/atm0s-sdn.git", rev = "7ee6dd7e50ae82f2c4e0d580aa6e6108b875f297" }
Expand Down

0 comments on commit 3d09423

Please sign in to comment.