mirror of
https://github.com/servo/servo
synced 2026-04-25 17:15:48 +02:00
* Run main and try jobs with debug assertions
* use single quotes in workflow expressions
* set force-debug-assertions in main.yml
* set force-debug-assertions as part of decision job
* fix typo in MachCommands.build
* fix more hardcoded profile names
* fix tidy
* split cargo_profile_option on windows
* Fix running servoshell and unit tests through a symlink
* rename steps to make them less confusing
* fix more hardcoded cargo profile options
* fix missing inputs in linux-wpt and mac-wpt
* make filename an inherent method of Resource
* rework release-with-debug-assertions profile to production profile
* rework resource logic to eliminate std_test_override
* set production flag in nightly release builds
* clean up servobuild.example and windows.yml
* oops forgot to check in embedder_traits/build.rs
* fix mach test-unit behaviour through symlink
* unit tests only need current_dir and ancestors
* fix macOS package smoketest breakage
* expect css/css-color/currentcolor-003 to crash under layout 2013
* fix more references to {force,release-with}-debug-assertions
* fix local build failures under --profile production
48 lines
1.5 KiB
TOML
48 lines
1.5 KiB
TOML
[package]
|
|
name = "script_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "script_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
bitflags = { workspace = true }
|
|
bluetooth_traits = { path = "../bluetooth_traits" }
|
|
canvas_traits = { path = "../canvas_traits" }
|
|
cookie = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
devtools_traits = { path = "../devtools_traits" }
|
|
embedder_traits = { path = "../embedder_traits" }
|
|
euclid = { workspace = true }
|
|
gfx_traits = { path = "../gfx_traits" }
|
|
headers = { workspace = true }
|
|
http = { workspace = true }
|
|
hyper_serde = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { workspace = true }
|
|
media = { path = "../media" }
|
|
msg = { path = "../msg" }
|
|
net_traits = { path = "../net_traits" }
|
|
pixels = { path = "../pixels" }
|
|
profile_traits = { path = "../profile_traits" }
|
|
serde = { workspace = true }
|
|
servo_atoms = { path = "../atoms" }
|
|
servo_url = { path = "../url" }
|
|
smallvec = { workspace = true }
|
|
style_traits = { path = "../style_traits", features = ["servo"] }
|
|
time = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webdriver = { workspace = true }
|
|
webgpu = { path = "../webgpu" }
|
|
webrender_api = { workspace = true }
|
|
webxr-api = { git = "https://github.com/servo/webxr", features = ["ipc"] }
|