42 lines
962 B
TOML
42 lines
962 B
TOML
[package]
|
|
name = "nancy"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Jacob Hinkle <jacob.hinkle@jhink.org>"]
|
|
description = "Composable provenance tracking for scientific data analysis"
|
|
repository = "https://git.jhink.org/jacob/nancy"
|
|
license = "BSD-3-Clause"
|
|
readme = "README.md"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "nancy"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "nancy"
|
|
path = "src/main.rs"
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.6"
|
|
assert_fs = "1.0.9"
|
|
predicates = "2.1.3"
|
|
|
|
[dependencies]
|
|
blake3 = "1.3.1"
|
|
clap = { version = "4.0.14", features = ["derive"] }
|
|
derive_more = "0.99.17"
|
|
env_logger = "0.9.1"
|
|
jwalk = "0.6.0"
|
|
log = "0.4.17"
|
|
machine-uid = "0.2.0"
|
|
once_cell = "1.15.0"
|
|
rayon = "1.5.3"
|
|
ring = "0.16.20"
|
|
rusqlite = { version = "0.28.0", features = ["uuid"] }
|
|
rusqlite_migration = "1.0.0"
|
|
sys-info = "0.9.1"
|
|
uuid = { version = "1.2.1", features = ["v4", "v5"] }
|
|
whoami = "1.2.3"
|