-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (40 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
52 lines (40 loc) · 1.06 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
[package]
name = "graviton"
version = "0.1.0"
authors = ["sentialx <sentialx@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Windowing
winit = "0.30"
# GPU rendering
wgpu = { version = "23", features = ["wgc"] }
pollster = "0.4"
bytemuck = { version = "1.14", features = ["derive"] }
# Platform-specific: Metal access for macOS
[target.'cfg(target_os = "macos")'.dependencies]
metal = "0.29"
objc = "0.2"
# 2D rendering
tiny-skia = "0.11"
# Font rendering
fontdue = "0.9"
# HTML/CSS parsing
html5ever = "0.36.1"
markup5ever_rcdom = "0.36.0"
regex = "1.12.2"
# Utilities
find_folder = "0.3.0"
# DevTools Protocol
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
base64 = "0.22"
# WebSocket server for Chrome DevTools
tokio = { version = "1", features = ["rt-multi-thread", "sync", "net", "macros"] }
tokio-tungstenite = "0.24"
futures-util = "0.3"
[dev-dependencies]
roxmltree = "0.21"
[[bin]]
name = "devtools_agent"
path = "src/bin/devtools_agent.rs"