-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathCargo.toml
More file actions
110 lines (102 loc) · 3.18 KB
/
Cargo.toml
File metadata and controls
110 lines (102 loc) · 3.18 KB
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
105
106
107
108
109
110
# module/core/willbe/Cargo.toml
[package]
name = "willbe"
version = "0.31.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <wandalen@obox.systems>",
"Dmytro Kryvoruchko <dmytro.kr@obox.systems>",
]
license = "MIT"
readme = "readme.md"
documentation = "https://docs.rs/willbe"
repository = "https://github.com/Wandalen/wTools/tree/master/module/core/willbe"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/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 = [
"enabled",
"progress_bar",
]
enabled = [
"crates_tools/enabled",
"error_tools/enabled",
"former/enabled",
"iter_tools/enabled",
"mod_interface/enabled",
"wca/enabled",
"pth/enabled",
"process_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"
rustdoc-md = "0.1.0"
assert_fs = "1.1.3"
## internal
# qqq : optimize features
crates_tools = { workspace = true }
error_tools = { workspace = true, features = [ "default", "error_typed", "error_untyped" ] }
genfile_core = { workspace = true, features = [ "default" ] }
former = { workspace = true, features = [ "default" ] }
component_model = { workspace = true, features = [ "default" ] }
iter_tools = { workspace = true, features = [ "default" ] }
mod_interface = { workspace = true, features = [ "default" ] }
wca = { workspace = true, features = [ "default" ] }
pth = { workspace = true, features = [ "default", "path_utf8" ] }
process_tools = { workspace = true, features = [ "default" ] }
derive_tools = { workspace = true, features = [ "default" ] } # derive_tools is a basic dependency required for compilation.
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, features = [ "full" ] }
assert_fs = "1.0"
serde_yaml = "0.9"
serde_json = "1.0.114"
serde = "1.0"
assert_cmd = "2.0"
predicates = "3.1.0"