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
2,835 changes: 2,340 additions & 495 deletions snix/Cargo.lock

Large diffs are not rendered by default.

7,488 changes: 6,744 additions & 744 deletions snix/Cargo.nix

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions snix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ fastcdc = "3.1.0"
fuse-backend-rs = "0.12.0"
futures = "0.3.30"
genawaiter = { version = "0.99.1", default-features = false }
gix = "0.70.0"
gix-transport = { version = "0.45.0", features = ["blocking-client"] }
gix-protocol = "0.45.0"
gix-url = "0.29.0"
glob = "0.3.1"
hex-literal = "0.4.1"
http = "1.1.0"
Expand Down
42 changes: 27 additions & 15 deletions snix/castore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,14 @@ thiserror.workspace = true
tokio-stream = { workspace = true, features = ["fs", "net"] }
tokio-util = { workspace = true, features = ["io", "io-util", "codec"] }
tokio-tar.workspace = true
tokio = { workspace = true, features = ["fs", "macros", "net", "rt", "rt-multi-thread", "signal"] }
tokio = { workspace = true, features = [
"fs",
"macros",
"net",
"rt",
"rt-multi-thread",
"signal",
] }
toml = { version = "0.8.19", optional = true }
tonic.workspace = true
tower.workspace = true
Expand Down Expand Up @@ -56,6 +63,12 @@ virtio-bindings = { workspace = true, optional = true }
wu-manber.workspace = true
auto_impl = "1.2.0"
hashbrown = "0.15.2"
gix = { workspace = true, features = [
"blocking-network-client",
"blocking-http-transport-reqwest",
] }
gix-archive = "0.16.0"
tempfile.workspace = true

[build-dependencies]
prost-build.workspace = true
Expand All @@ -64,7 +77,6 @@ tonic-build.workspace = true
[dev-dependencies]
async-process.workspace = true
rstest.workspace = true
tempfile.workspace = true
tokio-retry.workspace = true
hex-literal.workspace = true
rstest_reuse.workspace = true
Expand All @@ -75,22 +87,22 @@ tokio-test.workspace = true
[features]
default = ["cloud"]
cloud = [
"dep:bigtable_rs",
"object_store/aws",
"object_store/azure",
"object_store/gcp",
"dep:bigtable_rs",
"object_store/aws",
"object_store/azure",
"object_store/gcp",
]
fs = ["dep:fuse-backend-rs", "dep:threadpool", "dep:libc"]
virtiofs = [
"fs",
"dep:vhost",
"dep:vhost-user-backend",
"dep:virtio-queue",
"dep:vm-memory",
"dep:vmm-sys-util",
"dep:virtio-bindings",
"fuse-backend-rs?/vhost-user-fs", # impl FsCacheReqHandler for SlaveFsCacheReq
"fuse-backend-rs?/virtiofs",
"fs",
"dep:vhost",
"dep:vhost-user-backend",
"dep:virtio-queue",
"dep:vm-memory",
"dep:vmm-sys-util",
"dep:virtio-bindings",
"fuse-backend-rs?/vhost-user-fs", # impl FsCacheReqHandler for SlaveFsCacheReq
"fuse-backend-rs?/virtiofs",
]
fuse = ["fs"]
tonic-reflection = ["dep:tonic-reflection"]
Expand Down
Loading