-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathCargo.toml
104 lines (95 loc) · 2.93 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[package]
name = "willbe"
version = "0.14.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
"Dmytro Kryvoruchko <[email protected]>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/willbe"
repository = "https://github.com/Wandalen/wTools/tree/master/module/move/willbe"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/move/willbe"
description = """
Utility to publish multi-crate and multi-workspace environments and maintain their consistency.
"""
categories = [ "algorithms", "development-tools" ]
keywords = [ "fundamental", "general-purpose" ]
default-run = "will"
[lints]
workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
[features]
default = [
"enabled",
"progress_bar",
]
full = [
"default"
]
enabled = [
"crates_tools/enabled",
"error_tools/enabled",
"former/enabled",
"iter_tools/enabled",
"mod_interface/enabled",
"wca/enabled",
"proper_path_tools/enabled",
"process_tools/enabled",
"derive_tools/enabled",
"data_type/enabled",
"collection_tools/enabled",
"macro_tools/enabled",
]
tracing = [ "dep:tracing", "dep:tracing-subscriber" ]
progress_bar = [ "dep:indicatif" ]
[dependencies]
## external
cargo_metadata = "~0.18.1"
convert_case = "0.6.0"
flate2 = "~1.0"
globwalk = "~0.8"
toml_edit = "~0.14"
petgraph = "~0.6"
ptree = "~0.4"
rayon = "1.8.0"
semver = "~1.0.0"
similar = "~2.4"
regex = "1.10.2"
sha-1 = "~0.10"
tar = "~0.4"
handlebars = "4.5.0"
ureq = "~2.9"
colored = "2.1.0"
duct = "0.13.7"
tracing = { version = "0.1", features = [ "log-always" ], optional = true }
tracing-subscriber = { version = "0.3", optional = true }
indicatif = { version = "0.17", optional = true }
prettytable-rs = "0.10"
serde_json = "1.0" # for CargoMetadata::Package::metadata (need serde_json::Value)
serde = "1.0" # for CargoMetadata::Package
parse-display = "0.9" # need because derive_tools don't reexport this correctly
walkdir = "2.3"
## internal
crates_tools = { workspace = true }
error_tools = { workspace = true, features = [ "default" ] }
former = { workspace = true, features = [ "default" ] }
iter_tools = { workspace = true, features = [ "default" ] }
mod_interface = { workspace = true, features = [ "default" ] }
wca = { workspace = true, features = [ "default" ] }
proper_path_tools = { workspace = true, features = [ "default", "path_utf8" ] }
process_tools = { workspace = true, features = [ "default" ] }
derive_tools = { workspace = true, features = [ "derive_display", "derive_from_str", "derive_deref", "derive_from", "derive_as_ref" ] }
data_type = { workspace = true, features = [ "either" ] }
collection_tools = { workspace = true, features = [ "collection_constructors", "collection_into_constructors" ] }
macro_tools = { workspace = true, features = [ "default" ] }
[dev-dependencies]
test_tools = { workspace = true }
assert_fs = "1.0"
serde_yaml = "0.9"
serde_json = "1.0.114"
serde = "1.0"
assert_cmd = "2.0"