22 lines
521 B
TOML
22 lines
521 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"
|
|
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/main.rs"
|
|
|
|
[[bin]]
|
|
name = "nancy"
|
|
path = "src/cli/main.rs"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.14", features = ["derive"] }
|