Plume/plume-cli/Cargo.toml
Bat 6723432e52 CLI tools
- New sub-crate: plume-cli
- Creates a binary called 'plm'
- Uses clap to parse CLI arguments
- Add a first command: plm instance new (to init the local instance)
2018-10-06 12:19:48 +01:00

18 lines
288 B
TOML

[package]
name = "plume-cli"
version = "0.1.0"
authors = ["Bat' <baptiste@gelez.xyz>"]
[[bin]]
name = "plm"
[dependencies]
clap = "2.32"
dotenv = "0.13"
[dependencies.diesel]
features = ["postgres", "r2d2", "chrono"]
version = "*"
[dependencies.plume-models]
path = "../plume-models"