-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (52 loc) · 1.11 KB
/
Copy pathCargo.toml
File metadata and controls
55 lines (52 loc) · 1.11 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
[package]
name = "tui_blog"
version = "0.1.0"
authors = ["DocRAID <l01062506145@gmail.com>"]
license = "MIT"
edition = "2021"
rust-version = "1.80"
default-run = "tui_blog"
description = "Personal technical blog rendered as a WASM TUI"
[lib]
name = "tui_blog"
path = "src/lib.rs"
[[bin]]
name = "tui_blog"
path = "src/main.rs"
[dependencies]
ratatui = { version = "0.29.0", default-features = false }
ratzilla = "0.2.0"
log = "0.4"
console_log = "1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
futures = { version = "0.3", default-features = false, features = ["std"] }
js-sys = "0.3"
unicode-width = "0.2"
web-sys = { version = "0.3", features = [
"Request",
"RequestInit",
"RequestCache",
"RequestMode",
"Response",
"Window",
"History",
"Storage",
"Event",
"Document",
"Navigator",
"Clipboard",
"WheelEvent",
"Element",
"HtmlElement",
"HtmlBodyElement",
"CssStyleDeclaration",
"DomRect",
"Node",
"TouchEvent",
"Touch",
"TouchList",
"AddEventListenerOptions",
] }