-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
92 lines (84 loc) · 2.03 KB
/
Cargo.toml
File metadata and controls
92 lines (84 loc) · 2.03 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
83
84
85
86
87
88
89
90
91
92
[package]
name = "websh"
version = "0.1.0"
edition = "2024"
[dependencies]
leptos = { version = "0.8", features = ["csr"] }
console_error_panic_hook = "0.1"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3", features = [
"Blob",
"BlobPropertyBag",
"console",
"Document",
"FocusEvent",
"Headers",
"History",
"Element",
"HtmlElement",
"HtmlInputElement",
"KeyboardEvent",
"Location",
"Navigator",
"Node",
"NodeList",
"Request",
"RequestInit",
"RequestMode",
"Response",
"ScrollBehavior",
"ScrollIntoViewOptions",
"Storage",
"Touch",
"TouchEvent",
"TouchList",
"Url",
"Window",
] }
js-sys = "0.3"
comrak = { version = "0.52", default-features = false }
ammonia = "4"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
stylance = "0.7"
leptos_icons = "0.7"
icondata = { version = "0.7", default-features = false, features = ["bootstrap-icons", "lucide"] }
regex = { version = "1", default-features = false, features = ["std", "perf"] }
base64 = "0.22"
gloo-net = "0.6"
idb = "0.6"
gloo-timers = { version = "0.3", features = ["futures"] }
serde-wasm-bindgen = "0.6"
sha2 = "0.10"
hex = "0.4"
alloy-primitives = { version = "1", features = ["k256", "serde"] }
unicode-normalization = "0.1"
[dev-dependencies]
k256 = { version = "0.13", features = ["ecdsa"] }
tokio = { version = "1", features = ["macros", "rt"] }
wasm-bindgen-test = "0.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
clap = { version = "4", features = ["derive"] }
pgp = "0.19"
rand = "0.8"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
[features]
mock = []
[[test]]
name = "commit_integration"
required-features = ["mock"]
[package.metadata.stylance]
output_file = "assets/bundle.css"
folders = ["src"]
extensions = [".module.css"]
hash_len = 7
class_name_pattern = "[name]-[hash]"
[profile.release]
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"
strip = true