-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
41 lines (36 loc) · 877 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
32
33
34
35
36
37
38
39
40
41
[package]
name = "cargo-cook"
version = "1.1.0"
authors = ["Victor Polevoy <[email protected]>"]
readme = "README.md"
repository = "https://github.com/iddm/cargo-cook"
homepage = "https://github.com/iddm/cargo-cook"
license = "MIT/Apache-2.0"
description = "A third-party cargo extension which allows you to cook your crate"
edition = "2018"
keywords = ["cargo", "package", "cook", "make"]
categories = ["development-tools::cargo-plugins"]
[[bin]]
name = "cargo-cook"
[dependencies]
clap = "2"
toml = "0.5"
serde = { version = "1", features = ["derive"] }
regex = "1"
tar = "0.4"
rust-crypto = "0.2"
term = "0.7"
lazy_static = "1"
rpassword = "5"
sysconf = "0.3"
[features]
default = ["compression", "deploy", "ssh"]
compression = ["bzip2"]
deploy = ["ssh"]
ssh = ["ssh2"]
[dependencies.bzip2]
version = "0.4"
optional = true
[dependencies.ssh2]
version = "0.9"
optional = true