-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 1.13 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
[package]
name = "play-rinja"
version = "0.1.0"
edition = "2021"
publish = false
repository = "https://github.com/Kijewski/play-rinja"
license = "MIT OR Apache-2.0"
[dependencies]
rinja_derive_standalone = { version = "*", path = "rinja/rinja_derive_standalone", features = ["serde_json", "urlencode"] }
console_error_panic_hook = "0.1.7"
once_cell = "1.20.2"
prettyplease = "0.2.29"
proc-macro2 = { version = "1.0.93", default-features = false }
syn = { version = "2.0.96", default-features = false, features = ["full", "parsing", "printing"] }
syntect = { version = "5.2.0", default-features = false, features = ["parsing", "regex-fancy"] }
syntect-assets = { version = "0.23.6", default-features = false, features = ["regex-fancy"] }
wasm-bindgen = "0.2.100"
yew = { version = "0.21.0", features = ["csr"] }
[dependencies.web-sys]
version = "0.3.76"
features = [
"DomTokenList",
"HtmlDialogElement",
"HtmlPreElement",
"HtmlSelectElement",
"HtmlTextAreaElement",
"Performance",
"Storage",
]
[lints.clippy]
type_complexity = "allow"
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
debug = 0
panic = "abort"