-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
43 lines (38 loc) · 1.22 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
[package]
name = "askama_playground"
version = "0.1.0"
edition = "2024"
publish = false
repository = "https://github.com/Kijewski/askama_playground"
license = "MIT OR Apache-2.0"
[dependencies]
askama_derive = { version = "*", path = "askama/askama_derive", default-features = false, features = ["serde_json", "std", "urlencode"] }
console_error_panic_hook = "0.1.7"
once_cell = "1.21.3"
prettyplease = "0.2.36"
proc-macro2 = { version = "1.0.101", default-features = false }
quote = { version = "1.0.40", default-features = false }
syn = { version = "2.0.114", 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.108"
yew = { version = "0.22.0", features = ["csr"] }
[dependencies.web-sys]
version = "0.3.85"
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"