[package] name = "termcalc" version = "1.0.0" authors = ["RĂ©mi THEBAULT "] license = "MIT" description = "a simple Terminal Calculator." homepage = "https://github.com/rtbo/termcalc" repository = "https://github.com/rtbo/termcalc" documentation = "https://github.com/rtbo/termcalc" readme = "ReadMe.md" keywords = ["calculator", "terminal", "cli"] categories = ["command-line-utilities", "mathematics"] edition = "2021" [lib] name = "tc" path = "src/lib/lib.rs" [[bin]] name = "tc" path = "src/bin.rs" [dependencies] arboard = "3.4.0" clap = { version = "4.5.16", features = ["derive"] } crossterm = "0.27.0" pager-rs = "0.3.0" strip-ansi-escapes = "0.2.0" [dev-dependencies] approx = "0.5.1" [package.metadata.deb] section = "math" assets = [ ["target/release/tc", "usr/bin/", "755"], ["UNLICENSE", "usr/share/doc/tc/", "644"], ["LICENSE-MIT", "usr/share/doc/tc/", "644"], ["ReadMe.md", "usr/share/doc/tc/README", "644"], ["doc/gen/tc.1.gz", "usr/share/man/man1/tc.1.gz", "644"], ]