37 lines
969 B
TOML
37 lines
969 B
TOML
[package]
|
|
name = "ely_servo_host"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
servo-engine = [
|
|
"dep:dpi",
|
|
"dep:euclid",
|
|
"dep:naga",
|
|
"dep:raw-window-handle",
|
|
"dep:rustls",
|
|
"dep:serde",
|
|
"dep:serde_json",
|
|
"dep:servo",
|
|
"dep:url",
|
|
]
|
|
|
|
[dependencies]
|
|
dpi = { workspace = true, optional = true }
|
|
ely_domain = { path = "../ely_domain" }
|
|
euclid = { version = "0.22", optional = true }
|
|
naga = { version = "26.0.0", features = ["termcolor"], optional = true }
|
|
raw-window-handle = { version = "0.6", optional = true }
|
|
rustls = { version = "0.23.40", default-features = false, features = ["std", "aws_lc_rs"], optional = true }
|
|
serde = { workspace = true, optional = true }
|
|
serde_json = { workspace = true, optional = true }
|
|
servo = { workspace = true, optional = true }
|
|
thiserror.workspace = true
|
|
url = { workspace = true, optional = true }
|
|
|
|
[lints]
|
|
workspace = true
|