16 lines
310 B
TOML
16 lines
310 B
TOML
[package]
|
|
name = "clockcalc"
|
|
version = "0.0.1"
|
|
authors = ["Trollwut <trollwut@trollwut.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "clockcalclib"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "clockcalc-cli"
|
|
path = "src/cli.rs"
|