[package]
edition = "2021"
name = "ingest-api"
version = "0.1.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ingestion and verification service logic for immutable trace records"
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 = "ingest_api"
path = "src/lib.rs"
[[example]]
name = "lift_inspection_flow"
path = "examples/lift_inspection_flow.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.ed25519-dalek]
version = "2.1"
features = ["rand_core"]
[dependencies.ledger-core]
version = "0.1.3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
optional = true
[dev-dependencies.device-agent]
version = "0.1.3"