[package]
edition = "2024"
name = "mithril-cardano-node-internal-database"
version = "0.2.4"
authors = [
"dev@iohk.io",
"mithril-dev@iohk.io",
]
build = false
include = [
"**/*.rs",
"Cargo.toml",
"README.md",
".gitignore",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mechanisms that allow Mithril nodes to read the files of a Cardano node internal database and compute digests from them"
homepage = "https://mithril.network"
documentation = "https://mithril.network/doc"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/IntersectMBO/mithril/"
resolver = "2"
[lib]
name = "mithril_cardano_node_internal_database"
path = "src/lib.rs"
[[bench]]
name = "digester"
path = "benches/digester.rs"
harness = false
[dependencies.anyhow]
version = "1.0.103"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.digest]
version = "0.10.7"
features = ["alloc"]
[dependencies.hex]
version = "0.4.3"
[dependencies.mithril-common]
version = "0.7.14"
[dependencies.serde]
version = "1.0.228"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0.150"
[dependencies.sha2]
version = "0.10.9"
[dependencies.slog]
version = "=2.7.0"
[dependencies.thiserror]
version = "2.0.18"
[dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"sync",
"time",
"fs",
"io-util",
]
[dependencies.walkdir]
version = "2.5.0"
[dev-dependencies.criterion]
version = "0.8.2"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.mockall]
version = "0.15.0"
[dev-dependencies.slog-async]
version = "2.8.0"
[dev-dependencies.slog-term]
version = "2.9.2"
[dev-dependencies.tokio]
version = "1.52.3"
features = [
"rt",
"sync",
"time",
"macros",
"rt-multi-thread",
]