[package]
edition = "2021"
name = "chkpt-core"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core library for chkpt – a fast, content-addressable checkpoint system"
readme = false
license = "Apache-2.0"
[lib]
name = "chkpt_core"
path = "src/lib.rs"
[[example]]
name = "bench_catalog"
path = "examples/bench_catalog.rs"
[[example]]
name = "bench_fs_probes"
path = "examples/bench_fs_probes.rs"
[[example]]
name = "bench_ops"
path = "examples/bench_ops.rs"
[[test]]
name = "blob_test"
path = "tests/blob_test.rs"
[[test]]
name = "catalog_test"
path = "tests/catalog_test.rs"
[[test]]
name = "config_test"
path = "tests/config_test.rs"
[[test]]
name = "delete_test"
path = "tests/delete_test.rs"
[[test]]
name = "e2e_test"
path = "tests/e2e_test.rs"
[[test]]
name = "index_test"
path = "tests/index_test.rs"
[[test]]
name = "list_test"
path = "tests/list_test.rs"
[[test]]
name = "lock_test"
path = "tests/lock_test.rs"
[[test]]
name = "pack_test"
path = "tests/pack_test.rs"
[[test]]
name = "restore_test"
path = "tests/restore_test.rs"
[[test]]
name = "save_test"
path = "tests/save_test.rs"
[[test]]
name = "scanner_test"
path = "tests/scanner_test.rs"
[[test]]
name = "tree_test"
path = "tests/tree_test.rs"
[[bench]]
name = "hash_compress_compare"
path = "benches/hash_compress_compare.rs"
harness = false
[[bench]]
name = "save_pipeline"
path = "benches/save_pipeline.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.bitcode]
version = "0.6"
features = ["serde"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dirs]
version = "5"
[dependencies.fs4]
version = "0.13"
features = ["tokio"]
[dependencies.ignore]
version = "0.4"
[dependencies.lz4_flex]
version = "0.11"
[dependencies.memmap2]
version = "0.9"
[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v7"]
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dev-dependencies.blake3]
version = "1"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.lz4_flex]
version = "0.11"
[dev-dependencies.rustix]
version = "0.38"
features = ["fs"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dev-dependencies.zstd]
version = "0.13"