This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
62 lines (59 loc) · 1.73 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
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.dependencies]
cached = "0.44.0"
clap = { version = "4.4.2", features = ["derive"] }
miette = "5.10.0"
once_cell = "1.18.0"
once_map = "0.4.8"
petgraph = "0.6.4"
relative-path = { version = "1.9.0", features = ["serde"] }
reqwest = { version = "0.11.20", default-features = false, features = [
"rustls-tls",
] }
schematic = { version = "0.11.5", default-features = false, features = [
"schema",
"toml",
"type_relative_path",
"type_semver",
"type_url",
"valid_url",
] }
semver = "1.0.18"
serde = "1.0.188"
serde_json = "1.0.105"
starbase = { version = "0.2.5" }
starbase_archive = { version = "0.2.0", default-features = false }
starbase_sandbox = { version = "0.1.8" }
starbase_styles = "0.1.13"
starbase_utils = { version = "0.2.21", default-features = false, features = [
"glob",
] }
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["full", "tracing"] }
tracing = "0.1.37"
url = { version = "2.4.1", features = ["serde"] }
# Config for 'cargo dist'
[workspace.metadata.dist]
# Whether to consider the binaries in a package for distribution (defaults true)
dist = true
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.2.0"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell"]
# Path that installers should place binaries in
install-path = "~/.espresso/bin"
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"