[package]
edition = "2021"
name = "immutable-trace"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tamper-evident immutable audit trace: signing, verification, ingestion and CLI"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/yohei1126/immutable-trace"
[features]
default = []
s3 = [
"dep:aws-config",
"dep:aws-sdk-s3",
"dep:aws-credential-types",
"dep:tokio",
]
[lib]
name = "immutable_trace"
path = "src/lib.rs"
[[bin]]
name = "imt"
path = "src/main.rs"
[[example]]
name = "lift_inspection_flow"
path = "examples/lift_inspection_flow.rs"
[[test]]
name = "core_tests"
path = "tests/core_tests.rs"
[[test]]
name = "signing_tests"
path = "tests/signing_tests.rs"
[[test]]
name = "storage_tests"
path = "tests/storage_tests.rs"
[[test]]
name = "verify_tests"
path = "tests/verify_tests.rs"
[dependencies.aws-config]
version = "1"
optional = true
[dependencies.aws-credential-types]
version = "1"
optional = true
[dependencies.aws-sdk-s3]
version = "1"
optional = true
[dependencies.blake3]
version = "1.5"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
[dependencies.hex]
version = "0.4"
[dependencies.postcard]
version = "1.1"
features = ["alloc"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
optional = true
[dev-dependencies]