Skip to content

Commit

Permalink
chore: Bump various dependencies to what FF ships with (mozilla#1556)
Browse files Browse the repository at this point in the history
* chore: Bump various dependencies to what FF ships with

* Allow patch-level variations in deps

* Update neqo-common/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-crypto/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-http3/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-client/Cargo.toml

Co-authored-by: Max Inden <[email protected]>

* Update neqo-http3/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update test-fixture/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-interop/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-transport/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-transport/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-server/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

* Update neqo-server/Cargo.toml

Co-authored-by: Martin Thomson <[email protected]>

---------

Co-authored-by: Martin Thomson <[email protected]>
Co-authored-by: Max Inden <[email protected]>
  • Loading branch information
3 people authored Jan 23, 2024
1 parent ed13307 commit 1221cfd
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 44 deletions.
10 changes: 5 additions & 5 deletions neqo-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
neqo-crypto = { path = "./../neqo-crypto" }
neqo-transport = { path = "./../neqo-transport" }
mio = "~0.6.23"
neqo-common = { path="./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-http3 = { path = "./../neqo-http3" }
neqo-qpack = { path = "./../neqo-qpack" }
structopt = "0.3.7"
url = "2.0"
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.11.0"
mio = "0.6.17"
structopt = "0.3"
url = "~2.5.0"

[features]
deny-warnings = []
8 changes: 4 additions & 4 deletions neqo-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ license = "MIT OR Apache-2.0"
build = "build.rs"

[dependencies]
log = { version = "0.4.0", default-features = false }
enum-map = "~2.7.3"
enum-map = "2.7"
env_logger = { version = "0.10", default-features = false }
lazy_static = "1.3.0"
lazy_static = "1.4"
log = { version = "0.4", default-features = false }
qlog = "0.11.0"
time = { version = "0.3", features = ["formatting"] }
time = {version = "0.3.23", features = ["formatting"]}

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
10 changes: 5 additions & 5 deletions neqo-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ build = "build.rs"
license = "MIT OR Apache-2.0"

[dependencies]
log = {version = "~0.4.17", default-features = false}
neqo-common = { path = "../neqo-common" }
log = {version = "0.4.0", default-features = false}

[build-dependencies]
bindgen = {version = "0.69", default-features = false, features= ["runtime"]}
serde = "1.0"
serde_derive = "1.0"
toml = "0.5"
bindgen = {version = "0.69.1", default-features = false, features= ["runtime"]}
mozbuild = {version = "0.1", optional = true}
serde = "1.0.195"
serde_derive = "1.0.195"
toml = "0.5.11"

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
14 changes: 7 additions & 7 deletions neqo-http3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
enumset = "1.1.2"
lazy_static = "1.4"
log = {version = "0.4.17", default-features = false}
neqo-common = { path = "./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-transport = { path = "./../neqo-transport" }
neqo-qpack = { path = "./../neqo-qpack" }
log = {version = "0.4.0", default-features = false}
smallvec = "1.0.0"
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.11.0"
sfv = "0.9.1"
url = "2.0"
lazy_static = "1.3.0"
enumset = "1.1.2"
sfv = "0.9.3"
smallvec = "1.11.1"
url = "2.5"

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
9 changes: 4 additions & 5 deletions neqo-interop/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
neqo-crypto = { path = "./../neqo-crypto" }
neqo-transport = { path = "./../neqo-transport" }
lazy_static = "1.4"
neqo-common = { path="./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-http3 = { path = "./../neqo-http3" }
neqo-qpack = { path = "./../neqo-qpack" }

structopt = "0.3.7"
lazy_static = "1.3.0"
neqo-transport = { path = "./../neqo-transport" }
structopt = "~0.3"

[features]
deny-warnings = []
8 changes: 4 additions & 4 deletions neqo-qpack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
lazy_static = "~1.4.0"
log = {version = "~0.4.17", default-features = false}
neqo-common = { path = "./../neqo-common" }
neqo-transport = { path = "./../neqo-transport" }
neqo-crypto = { path = "./../neqo-crypto" }
log = {version = "0.4.0", default-features = false}
static_assertions = "1.1.0"
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.11.0"
lazy_static = "1.3.0"
static_assertions = "~1.1.0"

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
14 changes: 7 additions & 7 deletions neqo-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
neqo-crypto = { path = "./../neqo-crypto" }
neqo-transport = { path = "./../neqo-transport" }
log = {version = "0.4.17", default-features = false}
mio = "0.6.23"
mio-extras = "2.0.6"
neqo-common = { path="./../neqo-common" }
neqo-crypto = { path = "./../neqo-crypto" }
neqo-http3 = { path = "./../neqo-http3" }
neqo-qpack = { path = "./../neqo-qpack" }
structopt = "0.3.7"
regex = "1"
mio = "0.6.17"
mio-extras = "2.0.5"
log = {version = "0.4.0", default-features = false}
neqo-transport = { path = "./../neqo-transport" }
qlog = "0.11.0"
regex = "1.9"
structopt = "0.3"

[features]
deny-warnings = []
10 changes: 5 additions & 5 deletions neqo-transport/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
neqo-crypto = { path = "../neqo-crypto" }
indexmap = "1.9.3"
lazy_static = "1.4"
log = {version = "0.4.17", default-features = false}
neqo-common = { path = "../neqo-common" }
lazy_static = "1.3.0"
log = {version = "0.4.0", default-features = false}
smallvec = "1.0.0"
neqo-crypto = { path = "../neqo-crypto" }
qlog = "0.11.0"
indexmap = "1.0"
smallvec = "1.11.1"

[dev-dependencies]
test-fixture = { path = "../test-fixture" }
Expand Down
4 changes: 2 additions & 2 deletions test-fixture/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ rust-version = "1.70.0"
license = "MIT OR Apache-2.0"

[dependencies]
lazy_static = "1.3.0"
log = {version = "0.4.0", default-features = false}
lazy_static = "1.4"
log = {version = "0.4.17", default-features = false}
neqo-common = { path = "../neqo-common" }
neqo-crypto = { path = "../neqo-crypto" }
neqo-http3 = { path = "../neqo-http3" }
Expand Down

0 comments on commit 1221cfd

Please sign in to comment.