-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
54 lines (49 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
54 lines (49 loc) · 1.46 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
[package]
name = "inner-browser"
version = "0.1.0"
edition = "2024"
rust-version = "1.92"
description = "Minimal browser-like page handling compiled to WebAssembly (Servo html5ever parser)"
[lib]
crate-type = ["cdylib"]
[[bin]]
name = "serve-web"
path = "src/bin/serve_web.rs"
[dependencies]
anyrender_vello = "0.8"
blitz-dom = { git = "https://github.com/DioxusLabs/blitz", branch = "main", package = "blitz-dom" }
blitz-html = { git = "https://github.com/DioxusLabs/blitz", branch = "main", package = "blitz-html" }
blitz-paint = { git = "https://github.com/DioxusLabs/blitz", branch = "main", package = "blitz-paint" }
blitz-traits = { git = "https://github.com/DioxusLabs/blitz", branch = "main", package = "blitz-traits" }
console_error_panic_hook = "0.1"
html5ever = "0.38"
futures-intrusive = "0.5"
js-sys = "0.3"
markup5ever = "0.38"
markup5ever_rcdom = "0.38.0"
percent-encoding = "2"
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "0.6"
url = "2.5"
vello = "0.8"
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
wgpu_context = "0.4"
[dependencies.web-sys]
version = "0.3"
features = [
"CanvasRenderingContext2d",
"console",
"Headers",
"HtmlCanvasElement",
"ImageData",
"Request",
"RequestInit",
"RequestMode",
"Response",
"Window",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
axum = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net"] }
tower-http = { version = "0.6", features = ["fs"] }