Skip to content

Commit 838e02a

Browse files
authored
chore: update dependencies
1 parent 54a80a0 commit 838e02a

File tree

3 files changed

+30
-29
lines changed

3 files changed

+30
-29
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
- run: cargo update -p native-tls --precise 0.2.13 # 0.2.14 requires rustc 1.80
4040
- run: cargo update -p litemap --precise 0.7.4 # 0.7.5 requires rustc 1.81
4141
- run: cargo update -p zerofrom --precise 0.1.5 # 0.1.6 requires rustc 1.81
42+
- run: cargo update -p lz4_flex --precise 0.11.3 # 0.11.4 requires rustc 1.81
4243
- run: cargo update -p url --precise 2.5.0 # 2.5.4 requires rustc 1.82
4344
- run: cargo build
4445
- run: cargo build --no-default-features

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -99,46 +99,46 @@ rustls-tls-native-roots = [
9999
[dependencies]
100100
clickhouse-derive = { version = "0.2.0", path = "derive" }
101101

102-
thiserror = "2"
103-
serde = "1"
104-
bytes = "1"
105-
tokio = { version = "1", features = ["rt", "macros"] }
106-
http-body-util = "0.1"
107-
hyper = "1"
108-
hyper-util = { version = "0.1", features = ["client-legacy", "http1"] }
109-
hyper-tls = { version = "0.6", optional = true }
102+
thiserror = "2.0"
103+
serde = "1.0.106"
104+
bytes = "1.5.0"
105+
tokio = { version = "1.0.1", features = ["rt", "macros"] }
106+
http-body-util = "0.1.2"
107+
hyper = "1.4"
108+
hyper-util = { version = "0.1.6", features = ["client-legacy", "http1"] }
109+
hyper-tls = { version = "0.6.0", optional = true }
110110
rustls = { version = "0.23", default-features = false, optional = true }
111-
hyper-rustls = { version = "0.27", default-features = false, features = [
111+
hyper-rustls = { version = "0.27.3", default-features = false, features = [
112112
"http1",
113113
"tls12",
114114
], optional = true }
115-
url = "2"
116-
futures = "0.3"
117-
futures-channel = "0.3"
118-
static_assertions = "1"
115+
url = "2.1.1"
116+
futures = "0.3.5"
117+
futures-channel = "0.3.30"
118+
static_assertions = "1.1"
119119
sealed = "0.6"
120120
sha-1 = { version = "0.10", optional = true }
121-
serde_json = { version = "1", optional = true }
122-
lz4_flex = { version = "0.11", default-features = false, features = [
121+
serde_json = { version = "1.0.68", optional = true }
122+
lz4_flex = { version = "0.11.3", default-features = false, features = [
123123
"std",
124124
], optional = true }
125-
cityhash-rs = { version = ">=1.0.1", optional = true } # 1.0.1+ is Apache/MIT, earlier was GPL-3
125+
cityhash-rs = { version = "=1.0.1", optional = true } # exact version for safety, this package has been stable for years
126126
uuid = { version = "1", optional = true }
127127
time = { version = "0.3", optional = true }
128128
chrono = { version = "0.4", optional = true, features = ["serde"] }
129-
bstr = { version = "1", default-features = false }
129+
bstr = { version = "1.11.0", default-features = false }
130130
quanta = { version = "0.12", optional = true }
131-
replace_with = { version = "0.1" }
131+
replace_with = { version = "0.1.7" }
132132

133133
[dev-dependencies]
134134
criterion = "0.6"
135-
serde = { version = "1", features = ["derive"] }
136-
tokio = { version = "1", features = ["full", "test-util"] }
137-
hyper = { version = "1", features = ["server"] }
138-
serde_bytes = "0.11"
135+
serde = { version = "1.0.106", features = ["derive"] }
136+
tokio = { version = "1.0.1", features = ["full", "test-util"] }
137+
hyper = { version = "1.1", features = ["server"] }
138+
serde_bytes = "0.11.4"
139139
serde_json = "1"
140-
serde_repr = "0.1"
140+
serde_repr = "0.1.7"
141141
uuid = { version = "1", features = ["v4", "serde"] }
142-
time = { version = "0.3", features = ["macros", "rand"] }
143-
fixnum = { version = "0.9", features = ["serde", "i32", "i64", "i128"] }
142+
time = { version = "0.3.17", features = ["macros", "rand"] }
143+
fixnum = { version = "0.9.2", features = ["serde", "i32", "i64", "i128"] }
144144
rand = { version = "0.9", features = ["small_rng"] }

derive/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rust-version = "1.73.0"
1414
proc-macro = true
1515

1616
[dependencies]
17-
proc-macro2 = "1"
18-
syn = "2"
19-
quote = "1"
20-
serde_derive_internals = "0.29"
17+
proc-macro2 = "1.0"
18+
syn = "2.0"
19+
quote = "1.0"
20+
serde_derive_internals = "0.29.1"

0 commit comments

Comments
 (0)