mirror of
https://github.com/servo/servo.git
synced 2025-10-03 18:19:14 +01:00
73 lines
2 KiB
TOML
73 lines
2 KiB
TOML
[package]
|
|
|
|
name = "servo"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "servo"
|
|
path = "main.rs"
|
|
test = false
|
|
bench = false
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[target.'cfg(target_os = "macos")'.build-dependencies]
|
|
cc = "1.0"
|
|
|
|
[package.metadata.winres]
|
|
FileDescription = "Servo"
|
|
LegalCopyright = "© The Servo Project Developers"
|
|
OriginalFilename = "servo.exe"
|
|
ProductName = "Servo"
|
|
|
|
[features]
|
|
default = ["unstable", "default-except-unstable"]
|
|
default-except-unstable = ["webdriver", "max_log_level"]
|
|
native-bluetooth = ["libservo/native-bluetooth"]
|
|
max_log_level = ["log/release_max_level_info"]
|
|
webdriver = ["libservo/webdriver"]
|
|
energy-profiling = ["libservo/energy-profiling"]
|
|
debugmozjs = ["libservo/debugmozjs"]
|
|
profilemozjs = ["libservo/profilemozjs"]
|
|
unstable = ["libservo/unstable"]
|
|
webgl_backtrace = ["libservo/webgl_backtrace"]
|
|
webrender_debugger = ["libservo/webrender_debugger"]
|
|
js_backtrace = ["libservo/js_backtrace"]
|
|
|
|
[target.'cfg(not(target_os = "android"))'.dependencies]
|
|
backtrace = "0.3"
|
|
bitflags = "1.0"
|
|
crossbeam-channel = "0.3"
|
|
euclid = "0.19"
|
|
gleam = "0.6"
|
|
glutin = "0.21.0"
|
|
keyboard-types = "0.4.3"
|
|
lazy_static = "1"
|
|
libservo = {path = "../../components/servo"}
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
rust-webvr = { version = "0.11", features = ["glwindow"] }
|
|
tinyfiledialogs = "3.0"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "windows"))'.dependencies]
|
|
image = "0.21"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "macos"))'.dependencies]
|
|
osmesa-sys = "0.1.2"
|
|
sig = "1.0"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
x11 = "2.0.0"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
mozangle = { version = "0.2", features = ["egl"] }
|
|
winapi = { version = "0.3", features = ["wingdi", "winuser"] }
|
|
|
|
[target.'cfg(any(target_os = "macos", all(target_arch = "x86_64", target_os = "linux")))'.dependencies]
|
|
osmesa-src = {git = "https://github.com/servo/osmesa-src"}
|