-
Notifications
You must be signed in to change notification settings - Fork 74
/
Cargo.toml
92 lines (85 loc) · 2.83 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
[workspace]
members = [
"axoproject",
"cargo-dist",
"cargo-dist-schema",
]
resolver = "2"
exclude = ["axoproject/tests/projects/"]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/axodotdev/cargo-dist"
homepage = "https://opensource.axo.dev/cargo-dist/"
version = "0.26.0"
rust-version = "1.74"
[workspace.dependencies]
# intra-workspace deps (you need to bump these versions when you cut releases too!
cargo-dist-schema = { version = "=0.26.0", path = "cargo-dist-schema" }
axoproject = { version = "=0.26.0", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
# first-party deps
axocli = { version = "0.2.0" }
axoupdater = { version = "0.8.1" }
axotag = "0.2.0"
axoasset = { version = "1.2.0", features = ["json-serde", "toml-serde", "toml-edit", "yaml-serde", "compression", "remote"] }
axoprocess = { version = "0.2.0" }
gazenot = { version = "0.3.3" }
# third-party deps
clap = { version = "4.5.23", features = ["derive"] }
console = { version = "0.15.8" }
clap-cargo = { version = "0.14.0" }
comfy-table = "7.1.3"
miette = { version = "7.4.0" }
thiserror = "1.0.69"
tracing = { version = "0.1.41", features = ["log"] }
serde = { version = "1.0.216", features = ["derive"] }
serde_json = { version = "1.0.133" }
cargo_metadata = "0.18.1"
camino = { version = "1.1.9", features = ["serde1"] }
semver = "1.0.23"
newline-converter = "0.3.0"
dialoguer = "0.11.0"
sha2 = "0.10.6"
minijinja = { version = "2.5.0", features = ["debug", "loader", "builtins", "json", "custom_syntax"] }
include_dir = "0.7.4"
itertools = "0.13.0"
cargo-wix = "0.3.8"
uuid = { version = "1", features = ["v4"] }
mach_object = "0.1"
goblin = "0.8.2"
similar = "2.6.0"
tokio = { version = "1.42.0", features = ["full"] }
temp-dir = "0.1.14"
sha3 = "0.10.8"
blake2 = "0.10.6"
insta = { version = "1.41.1", features = ["filters"] }
tar = "0.4.43"
flate2 = "1.0.35"
pathdiff = { version = "0.2.3", features = ["camino"] }
url = "2.5.4"
parse-changelog = "0.6.10"
schemars = "0.8.21"
spdx = "0.10.7"
base64 = "0.22.1"
lazy_static = "1.5.0"
current_platform = "0.2.0"
color-backtrace = "0.6.1"
backtrace = "0.3.74"
target-lexicon = "0.12.16"
[workspace.metadata.release]
shared-version = true
tag-name = "v{{version}}"
pre-release-commit-message = "release: {{version}}"
publish = false
[profile.dev]
# level true/2 is usually overkill, cf. <https://doc.rust-lang.org/cargo/reference/profiles.html#debug>
debug = "limited"
# thin-local LTO is basically free, cf. <https://doc.rust-lang.org/cargo/reference/profiles.html#lto>
lto = false
# this speeds up xz compression etc. significantly. we could
# be more selective about which packages to optimize but :shrug:
package."*" = { opt-level = 2 }
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"