Skip to content
Open
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
101 changes: 101 additions & 0 deletions Cargo.lock

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

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ diom-namespace.workspace = true
diom-operations.workspace = true
diom-proto.workspace = true
diom-rate-limit.workspace = true
diom-transformations.workspace = true
fjall.workspace = true
fjall-utils.workspace = true
fs-err.workspace = true
Expand Down Expand Up @@ -87,6 +88,7 @@ zip.workspace = true

[dev-dependencies]
assert_matches.workspace = true
diom-transformations.workspace = true
ctor.workspace = true
rand.workspace = true
rmp-serde.workspace = true
Expand Down Expand Up @@ -149,6 +151,7 @@ diom-namespace.path = "crates/diom-namespace"
diom-operations.path = "crates/diom-operations"
diom-proto.path = "crates/diom-proto"
diom-rate-limit.path = "crates/rate-limit"
diom-transformations.path = "crates/diom-transformations"
criterion = "0.8.2"
ctor = "0.6.3"
dirs = "6.0.0"
Expand Down Expand Up @@ -207,7 +210,7 @@ tap = "1"
tempfile = "3.24.0"
test-utils.path = "crates/test-utils"
thiserror = "2.0.18"
tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread", "signal", "fs"] }
tokio = { version = "1.24.2", features = ["rt", "rt-multi-thread", "signal", "fs", "process", "sync", "io-util", "io-std"] }
tokio-util = "0.7"
toml = { version = "1.0.3", default-features = false, features = ["parse", "serde"] }
tower = "0.5.1"
Expand Down
34 changes: 34 additions & 0 deletions crates/diom-transformations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
[package]
name = "diom-transformations"
publish = false
version.workspace = true
license.workspace = true
rust-version.workspace = true
edition = "2024"

[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
seccompiler = "0.4"

[dependencies]
anyhow.workspace = true
bytes.workspace = true
diom-error.workspace = true
futures-util = { workspace = true, features = ["sink"] }
hex.workspace = true
rand.workspace = true
rmp-serde.workspace = true
rquickjs = { version = "0.11.0", features = ["futures", "macro", "array-buffer", "parallel"] }
serde.workspace = true
serde_json.workspace = true
thiserror = "2"
tokio.workspace = true
tokio-util = { workspace = true, features = ["codec"] }
tracing.workspace = true
uuid = { version = "1", features = ["v4"] }

[dev-dependencies]
tracing-test.workspace = true

[lints]
workspace = true
Loading