Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,20 @@ jobs:
- name: Build with VitePress
run: npm run build --prefix docs

shear:
name: Shear
runs-on: ubuntu-latest
needs: [check]
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- run: cargo install --locked cargo-shear
- name: Run cargo Shear
run: cargo shear

lychee:
name: Lychee
runs-on: ubuntu-latest
Expand Down
180 changes: 3 additions & 177 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,7 @@ rust-version = "1.85.0"
lib = { package = "yozefu-lib", path = "crates/lib", version = "0.0.23" }
app = { package = "yozefu-app", path = "crates/app", version = "0.0.23" }
command = { package = "yozefu-command", path = "crates/command", version = "0.0.23" }
yozefu = { package = "yozefu", path = "crates/bin", version = "0.0.23" }
tui = { package = "yozefu-tui", path = "crates/tui", version = "0.0.23" }
wasm-types = { package = "wasm-types", path = "crates/wasm-types", version = "0.0.23" }
serde_json = { version = "1.0.145", features = ["preserve_order"] }
serde = { version = "1.0.228", features = ["derive"] }
strum = {version = "0.27.2" }
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ EOF



FROM debian:trixie-slim AS final
FROM dhi.io/debian-base:trixie AS final
ARG UID=10001
RUN useradd \
--shell "/sbin/nologin" \
Expand Down
1 change: 0 additions & 1 deletion crates/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ chrono = "0.4.42"
tracing = { workspace = true }

[dev-dependencies]
tempfile = "3.23.0"
testing_logger = "0.1.1"
schemars = { workspace = true }

Expand Down
7 changes: 4 additions & 3 deletions crates/bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ path = "src/main.rs"
[dependencies]
tokio = { version = "1", features = ["full", "tracing"] }
command = { workspace = true }
console-subscriber = "0.5.0"
assert_cmd = "2.1.1"
testcontainers = { version = "0.25.0", features = ["blocking"] }

[features]
default = ["ssl-vendored", "libz-static"]
Expand All @@ -40,6 +37,10 @@ libz-static = [
"command/libz-static"
]

[dev-dependencies]
assert_cmd = "2.1.1"
testcontainers = { version = "0.25.0", features = ["blocking"] }


[package.metadata.cargo-machete]
ignored = ["console-subscriber"]
3 changes: 1 addition & 2 deletions crates/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,13 @@ url = "2.5.7"
apache-avro = "0.21.0"
reqwest = { version = "0.12.26", features = ["json"] }
byteorder = "1.5.0"
mockito = "1.7.1"

[dev-dependencies]
insta = { version = "1.45.0", features = ["filters", "glob", "json"] }
protobuf = "3.7.2"
tokio = { version = "1.48.0", features = ["rt", "macros", "rt-multi-thread"] }
schemars = { workspace = true, features = ["indexmap2", "url2", "chrono04"]}
proptest = "1.9.0"
mockito = "1.7.1"

[features]
native = [
Expand Down
2 changes: 0 additions & 2 deletions crates/tui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,5 +55,3 @@ gssapi-vendored = ["rdkafka/gssapi-vendored"]
indexmap = "2.12.1"
insta = { version = "1.45.0", features = ["filters"] }
tempfile = "3.23.0"
quickcheck = "1"
quickcheck_macros = "1"
6 changes: 3 additions & 3 deletions crates/wasm-blueprints/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2024"

[dependencies]
extism-pdk = "1.3.0"
serde = {version = "1.0.219", features = ["derive"]}
extism-pdk = "1.4.1"
serde = {version = "1.0.228", features = ["derive"]}
yozefu-wasm-types = { git = "https://github.com/MAIF/yozefu.git", branch="main" }
#yozefu-wasm-types = { path = "../../wasm-types" }

Expand All @@ -16,4 +16,4 @@ yozefu-wasm-types = { git = "https://github.com/MAIF/yozefu.git", branch="main"
crate-type = ["cdylib"]

[package.metadata.cargo-machete]
ignored = ["serde"]
ignored = ["serde"]
Loading
Loading