Skip to content

Commit

Permalink
Relax version constraints.
Browse files Browse the repository at this point in the history
  • Loading branch information
mstyura committed Sep 18, 2024
1 parent 03e6226 commit 354a57a
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,28 +18,27 @@ fips = ["boring/fips", "boring-sys/fips"]
runtime-tokio = ["quinn/runtime-tokio"]

[dependencies]
boring = "4.9"
boring-sys = "4.9"
boring = "4"
boring-sys = "4"
bytes = "1"
foreign-types-shared = "0.3.1"
lru = "0.11.0"
once_cell = "1.17"
foreign-types-shared = "0.3"
lru = "0.12"
once_cell = "1"
quinn = { version = "0.11", default-features = false }
quinn-proto = { version = "0.11", default-features = false }
rand = "0.8"
tracing = "0.1"

[dev-dependencies]
anyhow = "1.0.22"
assert_matches = "1.1"
clap = { version = "4.3", features = ["derive"] }
anyhow = "1.0"
assert_matches = "1"
clap = { version = "4", features = ["derive"] }
directories-next = "2"
hex-literal = "0.4.1"
ring = "0.16.7"
hex-literal = "0.4"
rcgen = "0.13"
rustls-pemfile = "2"
tokio = { version = "1.40", features = ["rt", "rt-multi-thread", "time", "macros", "sync"] }
tracing-subscriber = { version = "0.3.0", default-features = false, features = ["env-filter", "fmt", "ansi", "time", "local-time"] }
tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "macros", "sync"] }
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt", "ansi", "time", "local-time"] }
url = "2"

[[example]]
Expand Down

0 comments on commit 354a57a

Please sign in to comment.