Skip to content

Commit c42326d

Browse files
committed
Bump deps
Signed-off-by: Xuanwo <[email protected]>
1 parent 4c4696f commit c42326d

File tree

28 files changed

+745
-258
lines changed

28 files changed

+745
-258
lines changed

Cargo.lock

Lines changed: 672 additions & 202 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,5 +186,4 @@ rpath = false
186186

187187
arrow2 = { git = "https://github.com/jorgecarleitao/arrow2", rev = "db87f71" }
188188
parquet2 = { git = "https://github.com/jorgecarleitao/parquet2", rev = "ed0e1ff" }
189-
limits-rs = { git = "https://github.com/datafuse-extras/limits-rs", rev = "abfcf7b" }
190189
metrics = { git = "https://github.com/datafuse-extras/metrics.git", rev = "fc2ecd1" }

src/binaries/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ anyerror = { workspace = true }
5959
anyhow = { workspace = true }
6060
clap = { workspace = true }
6161
comfy-table = "6.1.3"
62-
limits-rs = "0.1.0"
62+
limits-rs = "0.2.0"
6363
poem = { version = "1", features = ["rustls", "multipart", "compression"] }
6464
sentry = { version = "0.30", default-features = false, features = [
6565
"backtrace",

src/common/auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ doctest = false
1111
test = false
1212

1313
[dependencies]
14-
base64 = "0.13.0"
14+
base64 = "0.21.0"
1515
chrono = { workspace = true }
1616
common-base = { path = "../../common/base" }
1717
http = "0.2"

src/common/auth/src/auth.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ use std::path::Path;
1818
use std::path::PathBuf;
1919
use std::sync::Arc;
2020

21-
use base64::encode_config;
22-
use base64::URL_SAFE;
21+
use base64::prelude::*;
2322
use chrono::DateTime;
2423
use chrono::Duration;
2524
use chrono::Utc;
@@ -77,7 +76,7 @@ pub enum RefreshableToken {
7776

7877
fn bearer_header(token: &str) -> Result<HeaderValue, Error> {
7978
// trim spaces and base 64
80-
let token = encode_config(token.trim(), URL_SAFE);
79+
let token = BASE64_URL_SAFE.encode(token.trim());
8180
let mut value = HeaderValue::try_from(format!("Bearer {}", token))
8281
.map_err(|err| Error::new(ErrorKind::InvalidInput, err))?;
8382
value.set_sensitive(true);

src/common/base/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ num_cpus = "1.13.1"
3737
once_cell = "1.15.0"
3838
parking_lot = "0.12"
3939
pin-project-lite = "0.2.9"
40-
pprof = { version = "0.10.1", features = [
40+
pprof = { version = "0.11.1", features = [
4141
"flamegraph",
4242
"protobuf-codec",
4343
"protobuf",

src/common/building/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ test = false
1414
anyhow = { workspace = true }
1515
cargo-license = "0.5.1"
1616
cargo_metadata = "0.15.0"
17-
gix = "0.36.1"
17+
gix = "0.42.0"
1818
tracing = "0.1.36"
1919
# TODO(xuanwo): vergion > 8.0.0-beta.5 requires time > 0.3.17 which is not compatible with opendal
2020
vergen = { version = "<=8.0.0-beta.5", features = ["build", "cargo", "git", "rustc", "gix"] }

src/common/io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ chrono = { workspace = true }
2323
chrono-tz = { workspace = true }
2424
ethnum = "1.3.2"
2525
lexical-core = "0.8.5"
26-
micromarshal = "0.2.1"
26+
micromarshal = "0.3.0"
2727
ordered-float = { workspace = true }
2828
serde = { workspace = true }
2929

src/common/metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ serde = { workspace = true }
2727
tracing = "0.1.36"
2828

2929
[target.'cfg(target_os = "linux")'.dependencies]
30-
procfs = "0.12.0"
30+
procfs = "0.15.1"
3131

3232
[dev-dependencies]
3333
anyhow = { workspace = true }

src/meta/service/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ serde_json = { workspace = true }
6363
serfig = "0.0.3"
6464
tokio-stream = "0.1.10"
6565
tonic = { version = "0.8.1", features = ["tls"] }
66-
tonic-reflection = "0.5.0"
66+
tonic-reflection = "0.6.0"
6767
tracing = "0.1.36"
6868
tracing-appender = "0.2.2"
6969
tracing-subscriber = { version = "0.3.15", features = ["env-filter", "ansi"] }
7070

7171
[dev-dependencies]
7272
async-entry = "0.3.1"
73-
env_logger = "0.9.1"
73+
env_logger = "0.10.0"
7474
maplit = "1.0.2"
7575
pretty_assertions = "1.3.0"
7676
regex = "1.6.0"

0 commit comments

Comments
 (0)