Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update cargo pre-1.0 packages (minor) #3628

Merged
merged 14 commits into from
Sep 9, 2024
187 changes: 90 additions & 97 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ hex = { version = "0.4.3", features = ["serde"] }
http = "0.2.11"
insta = { version = "1.38.0", features = ["json", "redactions", "yaml"] }
once_cell = "1.19.0"
reqwest = { version = "0.11.24", default-features = false, features = [
reqwest = { version = "0.11.0", default-features = false, features = [
"rustls-tls",
"rustls-native-certs",
"gzip",
Expand Down
2 changes: 1 addition & 1 deletion apollo-router-scaffold/scaffold-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ schemars = "0.8.10"
serde = "1.0.149"
serde_json = "1.0.79"
tokio = { version = "1.17.0", features = ["full"] }
tower = { version = "0.4.12", features = ["full"] }
tower = { version = "0.4.0", features = ["full"] }
tracing = "0.1.37"

# this makes build scripts and proc macros faster to compile
Expand Down
26 changes: 13 additions & 13 deletions apollo-router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ async-compression = { version = "0.4.6", features = [
] }
async-trait.workspace = true
axum = { version = "0.6.20", features = ["headers", "json", "original-uri"] }
base64 = "0.21.7"
base64 = "0.22.0"
bloomfilter = "1.0.13"
buildstructor = "0.5.4"
bytes = "1.6.0"
Expand All @@ -106,17 +106,17 @@ displaydoc = "0.2"
flate2 = "1.0.30"
fred = { version = "7.1.2", features = ["enable-rustls"] }
futures = { version = "0.3.30", features = ["thread-pool"] }
graphql_client = "0.13.0"
graphql_client = "0.14.0"
hex.workspace = true
http.workspace = true
http-body = "0.4.6"
heck = "0.4.1"
heck = "0.5.0"
humantime = "2.1.0"
humantime-serde = "1.1.1"
hyper = { version = "0.14.28", features = ["server", "client", "stream"] }
hyper-rustls = { version = "0.24.2", features = ["http1", "http2"] }
indexmap = { version = "2.2.6", features = ["serde"] }
itertools = "0.12.1"
itertools = "0.13.0"
jsonpath_lib = "0.3.0"
jsonpath-rust = "0.3.5"
jsonschema = { version = "0.17.1", default-features = false }
Expand All @@ -127,15 +127,15 @@ linkme = "0.3.27"
lru = "0.12.3"
maplit = "1.0.2"
mediatype = "0.19.18"
mockall = "0.11.4"
mockall = "0.13.0"
mime = "0.3.17"
multer = "2.1.0"
multimap = "0.9.1"
multimap = "0.9.1" # Warning: part of the public API
# To avoid tokio issues
notify = { version = "6.1.1", default-features = false, features = [
"macos_kqueue",
] }
nu-ansi-term = "0.49"
nu-ansi-term = "0.50"
num-traits = "0.2.19"
once_cell = "1.19.0"

Expand Down Expand Up @@ -214,7 +214,7 @@ serde_json.workspace = true
serde_urlencoded = "0.7.1"
serde_yaml = "0.8.26"
static_assertions = "1.1.0"
strum_macros = "0.25.3"
strum_macros = "0.26.0"
sys-info = "0.9.1"
thiserror = "1.0.61"
tokio.workspace = true
Expand All @@ -227,7 +227,7 @@ tonic = { version = "0.9.2", features = [
"gzip",
] }
tower.workspace = true
tower-http = { version = "0.4.4", features = [
tower-http = { version = "0.4.0", features = [
"add-extension",
"trace",
"cors",
Expand Down Expand Up @@ -291,7 +291,7 @@ hyperlocal = { version = "0.8.0", default-features = false, features = [
] }

[target.'cfg(target_os = "linux")'.dependencies]
tikv-jemallocator = "0.5.4"
tikv-jemallocator = "0.6.0"

[dev-dependencies]
axum = { version = "0.6.20", features = [
Expand All @@ -306,7 +306,7 @@ futures-test = "0.3.30"
insta.workspace = true
maplit = "1.0.2"
memchr = { version = "2.7.4", default-features = false }
mockall = "0.11.4"
mockall = "0.13.0"
num-traits = "0.2.19"
once_cell.workspace = true
opentelemetry-stdout = { version = "0.1.0", features = ["trace"] }
Expand All @@ -320,7 +320,7 @@ opentelemetry-proto = { version = "0.5.0", features = [
opentelemetry-datadog = { version = "0.8.0", features = ["reqwest-client"] }
p256 = "0.13.2"
rand_core = "0.6.4"
reqwest = { version = "0.11.27", default-features = false, features = [
reqwest = { version = "0.11.0", default-features = false, features = [
"json",
"multipart",
"stream",
Expand All @@ -336,7 +336,7 @@ tempfile.workspace = true
test-log = { version = "0.2.16", default-features = false, features = [
"trace",
] }
test-span = "0.7.0"
test-span = "0.8.0"
basic-toml = "0.1.9"
tower-test = "0.4.0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ telemetry:
datadog:
endpoint: default
enabled: true

2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ libfuzzer-sys = "0.4"
apollo-compiler.workspace = true
apollo-parser.workspace = true
apollo-smith.workspace = true
env_logger = "0.10.2"
env_logger = "0.11.0"
log = "0.4"
reqwest = { workspace = true, features = ["json", "blocking"] }
serde_json.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion fuzz/subgraph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"
axum = "0.6.20"
async-graphql = "6"
async-graphql-axum = "6"
env_logger = "0.10"
env_logger = "0.11"
futures = "0.3.17"
lazy_static = "1.4.0"
log = "0.4.16"
Expand Down
38 changes: 22 additions & 16 deletions xtask/Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,12 @@ version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"

[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"

[[package]]
name = "bitflags"
version = "1.3.2"
Expand Down Expand Up @@ -567,9 +573,9 @@ dependencies = [

[[package]]
name = "graphql_client"
version = "0.13.0"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09cdf7b487d864c2939b23902291a5041bc4a84418268f25fda1c8d4e15ad8fa"
checksum = "a50cfdc7f34b7f01909d55c2dcb71d4c13cbcbb4a1605d6c8bd760d654c1144b"
dependencies = [
"graphql_query_derive",
"reqwest",
Expand All @@ -579,9 +585,9 @@ dependencies = [

[[package]]
name = "graphql_client_codegen"
version = "0.13.0"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a40f793251171991c4eb75bd84bc640afa8b68ff6907bc89d3b712a22f700506"
checksum = "5e27ed0c2cf0c0cc52c6bcf3b45c907f433015e580879d14005386251842fb0a"
dependencies = [
"graphql-introspection-query",
"graphql-parser",
Expand All @@ -596,9 +602,9 @@ dependencies = [

[[package]]
name = "graphql_query_derive"
version = "0.13.0"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00bda454f3d313f909298f626115092d348bc231025699f557b27e248475f48c"
checksum = "83febfa838f898cfa73dfaa7a8eb69ff3409021ac06ee94cfb3d622f6eeb1a97"
dependencies = [
"graphql_client_codegen",
"proc-macro2",
Expand Down Expand Up @@ -795,9 +801,9 @@ checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"

[[package]]
name = "itertools"
version = "0.12.1"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
Expand Down Expand Up @@ -900,11 +906,11 @@ dependencies = [

[[package]]
name = "nu-ansi-term"
version = "0.49.0"
version = "0.50.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c073d3c1930d0751774acf49e66653acecb416c3a54c6ec095a9b11caddb5a68"
checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
dependencies = [
"windows-sys 0.48.0",
"windows-sys 0.52.0",
]

[[package]]
Expand Down Expand Up @@ -1150,7 +1156,7 @@ version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
"base64",
"base64 0.21.7",
"bytes",
"encoding_rs",
"futures-core",
Expand Down Expand Up @@ -1265,7 +1271,7 @@ version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
dependencies = [
"base64",
"base64 0.21.7",
]

[[package]]
Expand Down Expand Up @@ -2114,7 +2120,7 @@ name = "xtask"
version = "1.5.0"
dependencies = [
"anyhow",
"base64",
"base64 0.22.1",
"camino",
"cargo_metadata",
"chrono",
Expand Down Expand Up @@ -2145,9 +2151,9 @@ dependencies = [

[[package]]
name = "zeroize"
version = "1.6.0"
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"

[[package]]
name = "zip"
Expand Down
10 changes: 5 additions & 5 deletions xtask/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ chrono = { version = "0.4.34", default-features = false, features = ["clock"] }
console = "0.15.8"
dialoguer = "0.11.0"
flate2 = "1"
graphql_client = { version = "0.13.0", features = ["reqwest-rustls"] }
itertools = "0.12.1"
graphql_client = { version = "0.14.0", features = ["reqwest-rustls"] }
itertools = "0.13.0"
libc = "0.2"
memorable-wordlist = "0.1.7"
nu-ansi-term = "0.49"
nu-ansi-term = "0.50"
once_cell = "1"
regex = "1.10.3"
reqwest = { version = "0.11", default-features = false, features = [
"blocking",
"rustls-tls",
"rustls-tls-native-roots",
"rustls-tls-native-roots"
] }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1"
Expand All @@ -43,7 +43,7 @@ walkdir = "2.4.0"
xshell = "0.2.6"

[target.'cfg(target_os = "macos")'.dependencies]
base64 = "0.21"
base64 = "0.22"
zip = { version = "0.6", default-features = false }

[dev-dependencies]
Expand Down
Loading