24 lines
595 B
TOML
24 lines
595 B
TOML
[package]
|
|
name = "henceforth"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Dominic Grimm <dominic@dergrimm.net>"]
|
|
repository = "https://git.dergrimm.net/dergrimm/hence.git"
|
|
|
|
[lib]
|
|
name = "henceforth"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "henceforth"
|
|
path = "src/bin/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
hence = { path = "../hence" }
|
|
clap = { version = "3.2.16", features = ["derive"] }
|
|
anyhow = { version = "1.0.62", features = ["backtrace"] }
|
|
itertools = "0.10.2"
|
|
num-parse = "0.1.2"
|
|
sailfish = "0.4.0"
|