aboutsummaryrefslogtreecommitdiff
path: root/ticket/Cargo.toml
blob: 574251aefd94167d10b148212b3d5bc9327af6c0 (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
28
29
[package]
name = "ticket"
version = "0.1.0"
authors = ["Michael Gattozzi <mgattozzi@gmail.com>"]
edition = "2018"
license = "GPL-3.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
anyhow = "1.0"
colored = "1.9"
configamajig = { path = "../configamajig" }
chrono = "0.4"
paw = "1.0"
# Pinning a specific version in case they break everything again and mess up semver,
# though this won't fix if they break the semver on the core crate. Either way I don't
# trust this crate enough to not pin it.
rand = "0.7.2"
rustyline = "5.0"
serde = { version = "1.0", features = ["derive"] }
shared = { path = "../shared" }
structopt = { version = "0.3", features = ["paw"] }
toml = "0.5"
uuid = { version = "0.8", features = ["serde", "v1"] }
log = "0.4"
pretty_env_logger = "0.3"
tui = "0.7"
termion = "1.5"