-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
34 lines (29 loc) · 886 Bytes
/
Cargo.toml
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
[package]
name = "gosub_engine_v2"
version = "0.1.0"
edition = "2021"
rust-version = "1.79"
authors = ["Gosub Community <[email protected]>"]
description = "An HTML5 browser engine written in Rust."
license = "MIT"
repository = "https://github.com/gosub-browser/gosub-engine"
readme = "README.md"
keywords = ["html5", "parser", "browser", "Rust", "DOM"]
[workspace]
members = [
"crates/*"
]
[[bench]]
name = "node_update"
harness = false
[[bin]]
name = "gosub-text-user-agent"
path = "src/text-useragent.rs"
[dependencies]
gosub_shared = { path = "./crates/gosub_shared", features = [] }
gosub_html5 = { path = "./crates/gosub_html5", features = [] }
gosub_css3 = { path = "./crates/gosub_css3", features = [] }
gosub_renderer = { path = "./crates/gosub_renderer", features = [] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
test-case = "3.3.1"