Skip to content

Commit 1c7d1b2

Browse files
committed
build: update dependencies
1 parent 1c20d08 commit 1c7d1b2

File tree

9 files changed

+909
-686
lines changed

9 files changed

+909
-686
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ lib = { package = "yozefu-lib", path = "crates/lib", version = "0.0.23" }
3737
app = { package = "yozefu-app", path = "crates/app", version = "0.0.23" }
3838
command = { package = "yozefu-command", path = "crates/command", version = "0.0.23" }
3939
tui = { package = "yozefu-tui", path = "crates/tui", version = "0.0.23" }
40-
serde_json = { version = "1.0.145", features = ["preserve_order"] }
40+
serde_json = { version = "1.0.149", features = ["preserve_order"] }
4141
serde = { version = "1.0.228", features = ["derive"] }
4242
strum = {version = "0.27.2" }
4343
tracing = "0.1.44"
44-
schemars = { version = "1.1.0" }
44+
schemars = { version = "1.2.0" }
4545

4646

4747
[profile.release]

crates/app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ serde_json = { workspace = true }
1919
lib = { workspace = true, features = ["native"] }
2020
itertools = "0.14.0"
2121
thousands = "0.2.0"
22-
indexmap = "2.12.1"
22+
indexmap = "2.13.0"
2323
rdkafka = { version = "0.38.0", features = ["cmake-build"] }
2424
extism = { version = "1.13.0", features = [] }
25-
url = { version = "2.5.7", features = ["serde"] }
25+
url = { version = "2.5.8", features = ["serde"] }
2626
resolve-path = "0.1.0"
2727
directories = "6.0.0"
2828
chrono = "0.4.42"

crates/command/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ rust-version.workspace = true
1919

2020

2121
[dependencies]
22-
clap = { version = "4.5.53", features = [
22+
clap = { version = "4.5.54", features = [
2323
"derive",
2424
"env",
2525
"color",
@@ -29,8 +29,8 @@ serde_json = { workspace = true }
2929
chrono = "0.4.42"
3030
strum = { workspace = true, features = ["derive", "strum_macros"] }
3131
indicatif = { version = "0.18.3", features = ["tokio"] }
32-
tempfile = "3.23.0"
33-
tokio-util = "0.7.17"
32+
tempfile = "3.24.0"
33+
tokio-util = "0.7.18"
3434
futures = "0.3.31"
3535
itertools = "0.14.0"
3636
tokio = { version = "1", features = ["full", "tracing"] }
@@ -41,11 +41,11 @@ rdkafka = { version = "0.38.0", features = [
4141
"external-lz4",
4242
] }
4343
extism = { version = "1.13.0" }
44-
indexmap = "2.12.1"
44+
indexmap = "2.13.0"
4545
tui = { workspace = true }
4646
app = { workspace = true }
4747
lib = { workspace = true }
48-
reqwest = { version = "0.12.26", features = ["json"] }
48+
reqwest = { version = "0.13.1", features = ["json"] }
4949
const_format = { version = "0.2.35", features = ["rust_1_64"] }
5050
tracing = { workspace = true }
5151
tracing-subscriber = { version = "0.3.22", features = ["env-filter"]}

crates/lib/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ strum = { workspace = true, features = ["derive", "strum_macros"], optional = tr
2222
fuzzydate = {version = "0.3.1", optional = true }
2323
nom = "8.0.0"
2424
rdkafka = { version = "0.38.0", features = [], optional = true}
25-
url = "2.5.7"
25+
url = "2.5.8"
2626
apache-avro = "0.21.0"
27-
reqwest = { version = "0.12.26", features = ["json"] }
27+
reqwest = { version = "0.13.1", features = ["json"] }
2828
byteorder = "1.5.0"
2929

3030
[dev-dependencies]
31-
insta = { version = "1.45.0", features = ["filters", "glob", "json"] }
32-
tokio = { version = "1.48.0", features = ["rt", "macros", "rt-multi-thread"] }
31+
insta = { version = "1.46.0", features = ["filters", "glob", "json"] }
32+
tokio = { version = "1.49.0", features = ["rt", "macros", "rt-multi-thread"] }
3333
schemars = { workspace = true, features = ["indexmap2", "url2", "chrono04"]}
3434
proptest = "1.9.0"
3535
mockito = "1.7.1"

crates/tui/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ rust-version.workspace = true
1717
tokio = { version = "1", features = ["full", "tracing"] }
1818
serde = { workspace = true }
1919
serde_json = { workspace = true }
20-
tui-input = { version = "0.14.0", features = ["crossterm"], default-features = false }
20+
tui-input = { version = "0.15.0", features = ["crossterm"], default-features = false }
2121
chrono = "0.4.42"
2222
strum = { workspace = true, features = ["derive", "strum_macros"] }
2323
ratatui = { version = "0.30.0", features = [
@@ -28,10 +28,10 @@ crossterm = { version = "0.29.0", features = ["event-stream"] }
2828
itertools = "0.14.0"
2929
bytesize = { version = "2.3.1" }
3030
nom = "8.0.0"
31-
throbber-widgets-tui = {"git" = "https://github.com/Mcdostone/throbber-widgets-tui.git", branch = "main"}
31+
throbber-widgets-tui = "0.10.0"
3232
futures = "0.3.31"
3333
open = "5.3.3"
34-
tokio-util = "0.7.17"
34+
tokio-util = "0.7.18"
3535
thousands = "0.2.0"
3636
circular-buffer = "1.1.0"
3737
copypasta = "0.10.2"
@@ -52,6 +52,6 @@ gssapi-vendored = ["rdkafka/gssapi-vendored"]
5252

5353

5454
[dev-dependencies]
55-
indexmap = "2.12.1"
56-
insta = { version = "1.45.0", features = ["filters"] }
57-
tempfile = "3.23.0"
55+
indexmap = "2.13.0"
56+
insta = { version = "1.46.0", features = ["filters"] }
57+
tempfile = "3.24.0"

crates/wasm-blueprints/rust/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2024"
66
[dependencies]
77
extism-pdk = "1.4.1"
88
serde = {version = "1.0.228", features = ["derive"]}
9-
yozefu-wasm-types = { git = "https://github.com/MAIF/yozefu.git", branch="main" }
10-
#yozefu-wasm-types = { path = "../../wasm-types" }
9+
yozefu-wasm-types = { git = "https://github.com/MAIF/yozefu.git", branch="develop" }
10+
# yozefu-wasm-types = { path = "../../wasm-types" }
1111

1212

1313
[workspace]

0 commit comments

Comments
 (0)