mirror of
https://github.com/marcoallegretti/karapace.git
synced 2026-03-26 21:43:09 +00:00
- Run cargo fmt on skip_if_root() blocks - Add skip_if_root() to migrate_atomic_version_unchanged_on_write_failure - Add libc dev-dependency to karapace-store for root check - Remove explicit shell: sh from container rustup steps (OCI exec can't find sh in PATH; default run shell works)
25 lines
582 B
TOML
25 lines
582 B
TOML
[package]
|
|
name = "karapace-store"
|
|
description = "Content-addressable store, metadata, layers, GC, and integrity for Karapace"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
blake3.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
thiserror.workspace = true
|
|
tempfile.workspace = true
|
|
fs2.workspace = true
|
|
chrono.workspace = true
|
|
tar.workspace = true
|
|
tracing.workspace = true
|
|
karapace-schema = { path = "../karapace-schema" }
|
|
|
|
[dev-dependencies]
|
|
libc.workspace = true
|