forked from leptos-rs/cargo-leptos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (76 loc) · 2.19 KB
/
Cargo.toml
File metadata and controls
82 lines (76 loc) · 2.19 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[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.3.6"
edition = "2021"
rust-version = "1.82.0"
authors = ["Henrik Akesson", "Greg Johnston", "Ben Wishovich"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
brotli = "8.0"
clap = { version = "4.5.60", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
anyhow = "1.0"
color-eyre = "0.6.5"
libflate = "2.2"
tracing = "0.1.44"
cargo-config2 = "0.1.42"
target-lexicon = "0.13.5"
lightningcss = { version = "1.0.0-alpha.70", features = ["browserslist"] }
flexi_logger = "0.31.7"
tokio = { version = "1.49", default-features = false, features = ["full"] }
axum = { version = "0.8.8", features = ["ws"] }
# not using notify 5.0 because it uses Crossbeam which has an issue with tokio
notify-debouncer-full = "0.7.0"
which = "8.0"
cargo_metadata = { version = "0.23.1", features = ["builder"] }
cargo-lock = "11.0"
serde_json = "1.0"
reqwest = { version = "0.13.2", features = [
"blocking",
"rustls",
"json",
], default-features = false }
seahash = "4.1"
dirs = "6.0"
camino = "1.2"
dotenvy = "0.15.7"
itertools = "0.14.0"
derive_more = { version = "2.1", features = ["display"] }
flate2 = "1.1"
zip = { version = "8.1", default-features = false, features = ["deflate"] }
tar = "0.4.45"
dunce = "1.0"
bytes = "1.11"
leptos_hot_reload = "0.8.3"
pathdiff = { version = "0.2.3", features = ["camino"] }
semver = "1.0"
md-5 = "0.10.6"
base64ct = { version = "1.7.3", features = ["std"] }
swc = "55.0"
swc_common = "18.0"
shlex = "1.3"
cargo-generate = { version = "0.23.7", features = ["vendored-openssl"] }
ignore = "0.4.25"
walkdir = "2.5"
regex = "1.12.3"
clap_complete = "4.5.66"
wasm_split_cli_support = "0.2.0"
clearscreen = "4.0.5"
[dev-dependencies]
insta = { version = "1.46", features = ["yaml"] }
temp-dir = "0.2.0"
[features]
full_tests = []
no_downloads = []
[profile.release]
lto = true
codegen-units = 1
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"