forked from moonrepo/proto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
88 lines (84 loc) · 2.37 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
[workspace]
resolver = "2"
members = ["crates/*"]
default-members = ["crates/cli"]
[workspace.dependencies]
anyhow = "1.0.86"
cached = "0.51.3"
clap = "4.5.4"
clap_complete = "4.5.2"
dirs = "5.0.1"
extism = "1.3.0"
extism-pdk = "1.2.0"
human-sort = "0.2.2"
indexmap = "2.2.6"
miette = "7.2.0"
once_cell = "1.19.0"
once_map = "0.4.18"
regex = { version = "1.10.4", default-features = false, features = ["std"] }
reqwest = { version = "0.12.4", default-features = false, features = [
"charset",
"http2",
"macos-system-configuration",
] }
rustc-hash = "1.1.0"
schematic = { version = "0.16.4", default-features = false }
semver = "1.0.23"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
sha2 = "0.10.8"
shell-words = "1.1.0"
starbase = { version = "0.6.0" }
starbase_archive = { version = "0.7.2", features = [
"gz",
"miette",
"tar-gz",
"tar-xz",
"tar-zstd",
"zip",
"zip-deflate",
] }
starbase_events = { version = "0.6.0" }
starbase_sandbox = { version = "0.6.1" }
starbase_shell = { version = "0.2.2", features = ["miette"] }
starbase_styles = { version = "0.4.0" }
starbase_utils = { version = "0.7.3", default-features = false, features = [
"json",
"miette",
"net",
"toml",
] }
thiserror = "1.0.61"
tokio = { version = "1.38.0", features = ["full", "tracing"] }
tracing = "0.1.40"
uuid = { version = "1.8.0", features = ["v4"] }
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.13.3"
# CI backends to support
ci = ["github"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# The installers to generate for each app
installers = []
# Path that installers should place binaries in
install-path = "~/.proto/bin"
# Publish jobs to run in CI
pr-run-mode = "plan" # "upload"
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
[workspace.metadata.dist.github-custom-runners]
aarch64-unknown-linux-gnu = "buildjet-4vcpu-ubuntu-2204-arm"
aarch64-unknown-linux-musl = "buildjet-4vcpu-ubuntu-2204-arm"
[profile.dist]
inherits = "release"
lto = "thin"