-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (61 loc) · 1.67 KB
/
Cargo.toml
File metadata and controls
68 lines (61 loc) · 1.67 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
[workspace]
resolver = "2"
members = ["crates/*"]
exclude = ["crates/examples"]
[workspace.package]
version = "0.1.28"
repository = "https://github.com/human-solutions/builder"
license = "MIT"
edition = "2024"
description = "Command line tool for building web assets, wasm and mobile libs"
authors = ["henrik akesson"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'dist'
[workspace.metadata.dist]
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.29.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-unknown-linux-gnu"]
# Which actions to run on pull requests
pr-run-mode = "plan"
# Whether to install an updater program
install-updater = false
# Path that installers should place binaries in
install-path = "CARGO_HOME"
[workspace.dependencies]
anyhow = "1.0"
base64 = "0.22"
brotli = "8.0"
camino-fs = { version = "0.1", features = ["serde"] }
cargo_metadata = "0.22"
flate2 = "1.1"
fluent-langneg = "0.14.1"
fs-err = "3.1"
grass = "0.13"
icu_locid = "1.5"
lightningcss = { version = "1.0.0-alpha.67", features = ["browserslist"] }
log = "0.4"
seahash = "4.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
simplelog = "0.12"
swift-package = "0.1"
uniffi_bindgen = "0.29"
uuid = { version = "1.18", features = ["v4"] }
tempfile = "3.21"
time = "0.3"
wasmbin = "0.8"
# Dev dependencies only
insta = "1.40"
rust-embed = "8.5"
wasm-bindgen-cli-support = "0.2"
wasm-opt = "0.116"
which = "8.0"