Skip to content

Commit

Permalink
chore: Drop patch versions from deps (#1635)
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert authored Feb 9, 2024
1 parent 9e61f5e commit e7277f9
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 32 deletions.
11 changes: 6 additions & 5 deletions neqo-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,19 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
# neqo-client is not used in Firefox, so we can be liberal with dependency versions
clap = { version = "4.4", features = ["derive"] }
futures = "0.3"
hex = "0.4.3"
log = { version = "0.4.17", default-features = false }
hex = "0.4"
log = { version = "0.4", default-features = false }
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-http3 = { path = "./../neqo-http3" }
neqo-qpack = { path = "./../neqo-qpack" }
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.12.0"
qlog = "0.12"
tokio = { version = "1", features = ["net", "time", "macros", "rt", "rt-multi-thread"] }
url = "~2.5.0"
url = "2.5"

[features]
deny-warnings = []
5 changes: 3 additions & 2 deletions neqo-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
enum-map = "2.7"
env_logger = { version = "0.10", default-features = false }
lazy_static = "1.4"
log = { version = "0.4", default-features = false }
qlog = "0.12.0"
time = { version = "0.3.23", features = ["formatting"] }
qlog = "0.12"
time = { version = "0.3", features = ["formatting"] }

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
12 changes: 7 additions & 5 deletions neqo-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
log = { version = "~0.4.17", default-features = false }
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
log = { version = "0.4", default-features = false }
neqo-common = { path = "../neqo-common" }

[build-dependencies]
bindgen = { version = "0.69.1", default-features = false, features = ["runtime"] }
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
bindgen = { version = "0.69", default-features = false, features = ["runtime"] }
mozbuild = { version = "0.1", optional = true }
serde = "1.0.195"
serde_derive = "1.0.195"
toml = "0.5.11"
serde = "1.0"
serde_derive = "1.0"
toml = "0.5"

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
11 changes: 6 additions & 5 deletions neqo-http3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
enumset = "1.1.2"
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
enumset = "1.1"
lazy_static = "1.4"
log = { version = "0.4.17", default-features = false }
log = { version = "0.4", default-features = false }
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-qpack = { path = "./../neqo-qpack" }
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.12.0"
sfv = "0.9.3"
smallvec = "1.11.1"
qlog = "0.12"
sfv = "0.9"
smallvec = "1.11"
url = "2.5"

[dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion neqo-interop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
# neqo-interop is not used in Firefox, so we can be liberal with dependency versions
clap = { version = "4.4", features = ["derive"] }
lazy_static = "1.4"
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
Expand Down
9 changes: 5 additions & 4 deletions neqo-qpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
lazy_static = "~1.4.0"
log = { version = "~0.4.17", default-features = false }
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
lazy_static = "1.4"
log = { version = "0.4", default-features = false }
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.12.0"
static_assertions = "~1.1.0"
qlog = "0.12"
static_assertions = "1.1"

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
7 changes: 4 additions & 3 deletions neqo-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
clap = { version = "4.4.18", features = ["derive"] }
# neqo-server is not used in Firefox, so we can be liberal with dependency versions
clap = { version = "4.4", features = ["derive"] }
futures = "0.3"
log = { version = "0.4.17", default-features = false }
log = { version = "0.4", default-features = false }
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-http3 = { path = "./../neqo-http3" }
neqo-qpack = { path = "./../neqo-qpack" }
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.12.0"
qlog = "0.12"
regex = "1.9"
tokio = { version = "1", features = ["net", "time", "macros", "rt", "rt-multi-thread"] }

Expand Down
11 changes: 6 additions & 5 deletions neqo-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
indexmap = "1.9.3"
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
indexmap = "1.9"
lazy_static = "1.4"
log = { version = "0.4.17", default-features = false }
log = { version = "0.4", default-features = false }
neqo-common = { path = "../neqo-common" }
neqo-crypto = { path = "../neqo-crypto" }
qlog = "0.12.0"
smallvec = "1.11.1"
qlog = "0.12"
smallvec = "1.11"

[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
criterion = { version = "0.5", features = ["html_reports"] }
enum-map = "2.7"
test-fixture = { path = "../test-fixture" }

Expand Down
5 changes: 3 additions & 2 deletions test-fixture/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,15 @@ rust-version.workspace = true
license.workspace = true

[dependencies]
# Sync with https://searchfox.org/mozilla-central/source/Cargo.lock 2024-02-08
lazy_static = "1.4"
log = { version = "0.4.17", default-features = false }
log = { version = "0.4", default-features = false }
neqo-common = { path = "../neqo-common" }
neqo-crypto = { path = "../neqo-crypto" }
neqo-http3 = { path = "../neqo-http3" }
neqo-qpack = { path = "../neqo-qpack" }
neqo-transport = { path = "../neqo-transport" }
qlog = "0.12.0"
qlog = "0.12"

[features]
deny-warnings = []

0 comments on commit e7277f9

Please sign in to comment.