forked from pd-rs/crank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (31 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
35 lines (31 loc) · 836 Bytes
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
32
33
34
35
[package]
name = "crankstart-cli"
version = "0.2.9"
authors = ["Rob Tsuk <rob@tsuk.com>"]
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"
tempfile = "3.10.1"
[target.'cfg(target_os = "linux")'.dependencies]
walkdir = "2.3.2"