-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (55 loc) · 1.3 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
[workspace]
members = ["mdsf", "codegen"]
exclude = []
resolver = "2"
[workspace.package]
readme = "README.md"
edition = "2021"
homepage = "https://github.com/hougesen/mdsf"
authors = ["Mads Hougesen <mads@mhouge.dk>"]
license = "MIT"
repository = "https://github.com/hougesen/mdsf"
exclude = []
[workspace.dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.20", features = ["derive"] }
clap_complete = "4.5.37"
console = "0.15.8"
convert_case = "0.6.0"
env_logger = "0.11.5"
ignore = "0.4.23"
json_comments = "0.2.2"
log = "0.4.22"
mdsf = { path = "./mdsf", features = ["json-schema"] }
once_cell = "1.20.2"
regex = "1.11.1"
reqwest = { version = "0.12.9", default-features = false, features = [
"blocking",
"brotli",
"charset",
"cookies",
"deflate",
"gzip",
"http2",
"json",
"macos-system-configuration",
"rustls-tls",
"zstd",
] }
schemars = { version = "0.8.21" }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = { version = "0.9.34" }
sha2 = "0.10.8"
tempfile = "3.14.0"
terminal_size = "0.4.0"
test-with = { version = "0.14.4", default-features = false, features = [
"executable",
] }
threadpool = "1.8.1"
toml = { version = "0.8.19" }
which = "6.0.3"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"