-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 907 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
[package]
name = "cargo-x"
version = "0.3.6"
authors = ["Liu Chong <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/liuchong/cargo-x"
homepage = "https://github.com/liuchong/cargo-x"
description = """
A very simple third-party cargo subcommand to execute a custom command.
"""
keywords = ["x", "exec", "execute", "cmd", "command"]
edition = "2018"
[package.metadata.x]
lint = "cargo clippy --verbose --all-targets --all-features --all --release -- -D warnings"
test = "cargo test --verbose --all-targets --all-features --all --release"
build = "cargo build --verbose --all-targets --all-features --all --release"
[lib]
name = "cargo_x"
path = "src/lib.rs"
[profile.release]
panic = 'abort'
[dependencies]
dirs = "1.0"
failure = { version = "0.1", features = ["derive"] }
regex = "1.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.4"