aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 083e9929c7515d954c259cfa15b58a11868aedb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "dev-suite"
version = "0.1.0"
authors = ["Michael Gattozzi <mgattozzi@gmail.com>"]
edition = "2018"
license = "GPL-3.0"

[[bin]]
name = "ds"
path = "src/main.rs"

[dependencies]
anyhow = "1.0"
paw = "1.0"
shared = { path = "shared" }
configamajig = { path = "configamajig" }
structopt = { version = "0.3", features = ["paw"] }
dialoguer = "0.5"
which = "3.1"

[workspace]
members = [
  "configamajig",
  "shared",
  "ticket",
  "hooked",
]