Skip to content
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
Merged
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
4,671 changes: 4,341 additions & 330 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 13 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ strip = true

anyhow.workspace = true
clap.workspace = true
gix.workspace = true
semver.workspace = true
tempfile.workspace = true
thiserror.workspace = true
Expand All @@ -25,8 +26,7 @@ tracing-appender.workspace = true
tracing-indicatif.workspace = true
tracing-subscriber.workspace = true

atom = { path = "crates/atom" }
gix = { workspace = true }
atom.path = "crates/atom"

[workspace.dependencies]
anyhow = "^1"
Expand All @@ -36,14 +36,18 @@ tracing = "^0.1"
tracing-appender = "^0.2"
tracing-indicatif = "^0.3"

clap = { version = "^4", features = ["derive"] }
insta = { version = "^1", features = ["yaml"] }
semver = { version = "^1", features = ["serde"] }
serde = { version = "^1", features = ["derive"] }
tokio = { version = "^1", features = ["full"] }
toml_edit = { version = "^0.22", features = ["serde", "parse"] }
clap = { version = "^4", features = [
"derive",
"wrap_help",
"unstable-markdown",
] }
insta = { version = "^1", features = ["yaml"] }
semver = { version = "^1", features = ["serde"] }
serde = { version = "^1", features = ["derive"] }
tokio = { version = "^1", features = ["full"] }
toml_edit = { version = "^0.22", features = ["serde", "parse"] }
tracing-subscriber = { version = "^0.3", features = ["env-filter", "json"] }
url = { version = "^2", features = ["serde"] }
url = { version = "^2", features = ["serde"] }


gix = { version = "^0.73", default-features = false, features = [
Expand Down
18 changes: 13 additions & 5 deletions crates/atom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,19 @@ tracing.workspace = true
tracing-indicatif.workspace = true
url.workspace = true

config = { path = "../config" }
gix = { workspace = true, default-features = false, features = ["serde"] }
gix-url = { version = "^0.27", features = ["serde"] }
hex = { version = "^0.4", features = ["serde"] }
nix-compat = { git = "https://github.com/nrdxp/snix", features = ["serde"] }
config = { path = "../config" }
gix = { workspace = true, default-features = false, features = ["serde"] }
hex = { version = "^0.4", features = ["serde"] }
nix-compat = { git = "https://github.com/nrdxp/snix", branch = "canon", features = [
"serde",
] }
snix-castore = { git = "https://github.com/nrdxp/snix", branch = "canon", default-features = false, features = [
"fuse",
] }
snix-glue = { git = "https://github.com/nrdxp/snix", branch = "canon" }
snix-store = { git = "https://github.com/nrdxp/snix", branch = "canon", default-features = false, features = [
"fuse",
] }

[dev-dependencies]
anyhow.workspace = true
Expand Down
Loading