forked from pd-rs/crank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (27 loc) · 805 Bytes
/
Cargo.toml
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
30
31
[package]
name = "crankstart-cli"
version = "0.2.9"
authors = ["Rob Tsuk <[email protected]>"]
edition = "2018"
description = "A command line tool for use with [Crankstart](https://github.com/pd-rs/crankstart)."
license = "MIT"
repository = "https://github.com/pd-rs/crank"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "crank"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.31"
cargo_metadata = "0.10.0"
dirs = "2.0.2"
Inflector = "0.11.4"
log = { version = "0.4.8", features = ["max_level_trace", "release_max_level_trace"] }
pretty_env_logger = "0.4.0"
serde = "1.0.110"
serde_derive = "1.0.110"
structopt = "0.3.14"
toml = "0.5.6"
zip = "0.6"
zip-extensions = "0.6"
[target.'cfg(target_os = "linux")'.dependencies]
walkdir = "2.3.2"