Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
137 changes: 137 additions & 0 deletions Cargo.lock

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

10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ tokio = { version = "1", features = ["full"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order", "raw_value"] }
yaml_serde = "0.10.4"
# Comment- and format-preserving YAML edits. Used by aube-manifest /
# aube to surgically rewrite user-authored workspace YAML files
# (catalogs, allowBuilds, patchedDependencies) without stripping
# comments — yaml_serde's round-trip would otherwise destroy them.
# yamlpatch's value/parse types come from serde_yaml 0.9, which is the
# upstream of yaml_serde; we keep yaml_serde for typed reads and only
# touch serde_yaml at the patch boundary.
yamlpatch = "1.24"
yamlpath = "1.24"
serde_yaml = "0.9"
simd-json = "0.17"
toml = "0.8"
rkyv = "0.8"
Expand Down
3 changes: 3 additions & 0 deletions crates/aube-manifest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ serde = { workspace = true }
serde_json = { workspace = true }
simd-json = { workspace = true }
yaml_serde = { workspace = true }
yamlpatch = { workspace = true }
yamlpath = { workspace = true }
serde_yaml = { workspace = true }
thiserror = { workspace = true }

[dev-dependencies]
Expand Down
Loading
Loading