-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
60 lines (54 loc) · 1.97 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[package]
name = "apple-clis"
version = "0.0.15"
edition = "2021"
default-run = "apple-clis"
description = "A collection of Apple command-line tool wrappers, library and CLI"
authors = ["Caleb Yates <[email protected]"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/ActuallyHappening/Apple-CLIs"
publish = true
include = ["src/", "LICENSE-APACHE", "LICENSE-MIT", "/examples", "docs/inline/*"]
[workspace]
exclude = ["example-bundle", "fuzz"]
[workspace.metadata.scripts]
dev-install = "cargo install nu cargo-all-features"
test = "nu test.nu"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["cli"]
cli = ["dep:clap", "dep:clap_complete", "dep:clap_complete_nushell", "dep:color-eyre", "dep:clap-cargo", "dep:glob"]
## Allows you to construct many structs used for parsing
## Used in doctests often
unstable-construction = []
[[bin]]
name = "apple-clis"
required-features = ["cli"]
path = "src/main.rs"
[dependencies]
bossy = "0.2.1"
camino = { version = "1.1.6", features = ["serde", "serde1"] }
clap = { version = "4.5.2", features = ["derive", "env"], optional = true }
clap-cargo = { version = "0.14.0", optional = true }
clap_complete = { version = "4.5.1", optional = true }
clap_complete_nushell = { version = "4.5.1", optional = true }
color-eyre = { version = "0.6.3", optional = true }
derive_more = "0.99.17"
dirs = "5.0.1"
ext-trait = "1.0.1"
extension-traits = "1.0.1"
glob = { version = "0.3.1", optional = true }
nom = "7.1.3"
openssl = "0.10.64"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
stability = "0.2.0"
static_assertions = "1.1.0"
strum = { version = "0.26.2", features = ["derive"] }
thiserror = "1.0.57"
time = { version = "0.3.34", features = ["parsing", "serde", "macros"] }
toml = "0.8.10"
tracing = { version = "0.1.40", features = ["log"] }
tracing-error = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
which = "6.0.0"