-
Notifications
You must be signed in to change notification settings - Fork 107
/
Cargo.toml
109 lines (99 loc) · 3.01 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.20.0"
# CI backends to support
ci = "github"
# Target platforms to build apps for (Rust target-triple syntax)
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
# The installers to generate for each app
installers = ["shell", "powershell"]
# Publish jobs to run in CI
pr-run-mode = "plan"
# The archive format to use for windows builds (defaults .zip)
windows-archive = ".tar.gz"
# The archive format to use for non-windows builds (defaults .tar.xz)
unix-archive = ".tar.gz"
# Where to host releases
hosting = ["axodotdev", "github"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
[package]
name = "cargo-leptos"
license = "MIT"
repository = "https://github.com/leptos-rs/cargo-leptos"
description = "Build tool for Leptos."
categories = ["development-tools", "wasm", "web-programming"]
keywords = ["leptos"]
version = "0.2.21"
edition = "2021"
rust-version = "1.71"
authors = ["Henrik Akesson", "Greg Johnston", "Ben Wishovich"]
[package.metadata.wix]
upgrade-guid = "D53446E4-A943-4A64-823F-4CB4855A4B09"
path-guid = "A08FA8BB-CD5A-4C75-85D0-E9DE2B374C14"
license = false
eula = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
brotli = "7"
clap = { version = "4.5.18", features = ["derive"] }
serde = { version = "1.0.210", features = ["derive"] }
anyhow = "1.0.89"
libflate = "2"
log = "0.4"
lightningcss = { version = "1.0.0-alpha.57", features = ["browserslist"] }
flexi_logger = "0.29.3"
tokio = { version = "1.40.0", default-features = false, features = ["full"] }
axum = { version = "0.7.7", features = ["ws"] }
# not using notify 5.0 because it uses Crossbeam which has an issue with tokio
notify = "4.0"
lazy_static = "1.4"
which = "6"
cargo_metadata = { version = "0.18", features = ["builder"] }
serde_json = "1.0.128"
wasm-bindgen-cli-support = "=0.2.95"
ansi_term = "0.12"
reqwest = { version = "0.12.8", features = [
"blocking",
"rustls-tls",
"json",
], default-features = false }
seahash = "4.1"
dirs = "5.0"
camino = "1.1"
dotenvy = "0.15"
itertools = "0.13"
derive_more = { version = "1.0.0", features = ["display"] }
flate2 = "1.0.34"
zip = { version = "2.2", default-features = false, features = ["deflate"] }
tar = "0.4.42"
dunce = "1.0"
bytes = "1.7.2"
leptos_hot_reload = "0.6"
pathdiff = { version = "0.2.2", features = ["camino"] }
semver = "1.0.23"
async-trait = "0.1.83"
md-5 = "0.10.6"
base64ct = { version = "1.6.0", features = ["alloc"] }
swc = "1.0.1"
swc_common = "1.0.0"
shlex = "1.3.0"
[dev-dependencies]
insta = { version = "1.40.0", features = ["yaml"] }
temp-dir = "0.1"
[features]
full_tests = []
no_downloads = []
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"