-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (37 loc) · 945 Bytes
/
Cargo.toml
File metadata and controls
41 lines (37 loc) · 945 Bytes
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
[package]
name = "web-segment"
version = "0.12.0"
edition = "2021"
license = "AGPL-3.0-only"
authors = ["SegmentationViolator <segmentationviolator@proton.me>"]
[dependencies]
gloo-timers = "0.4"
html5gum = "0.8"
itertools = "0.14"
katex = { version = "0.4", default-features = false, features = ["wasm-js"] }
pulldown-cmark = "0.13"
reqwest = { version = "0.13", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
stylist = { version = "0.15", features = ["yew_integration"] }
syntect = { version = "5", default-features = false, features = ["default-fancy"] }
wasm-bindgen = "0.2"
yew = { version = "0.23", features = ["csr"] }
yew-hooks = "0.6"
yew-router = "0.20"
[dependencies.web-sys]
version = "0.3"
features = [
"Document",
"Element",
"Location",
"Window",
]
[features]
pri-demon-th = []
[profile.release]
codegen-units = 1
lto = true
opt-level = 'z'
panic = "abort"
strip = true