mirror of
https://github.com/servo/servo
synced 2026-04-26 17:45:19 +02:00
* Remove packages that were moved to external repo
* Add workspace dependencies pointing to 2023-06-14 branch
* Fix servo-tidy.toml errors
* Update commit to include #31346
* Update commit to include servo/stylo#2
* Move css-properties.json lookup to target/doc/stylo
* Remove dependency on vendored mako in favour of pypi dependency
This also removes etc/ci/generate_workflow.py, which has been unused
since at least 9e71bd6a70.
* Add temporary code to debug Windows test failures
* Fix failures on Windows due to custom target dir
* Update commit to include servo/stylo#3
* Fix license in tests/unit/style/build.rs
* Document how to build with local Stylo in Cargo.toml
63 lines
1.7 KiB
TOML
63 lines
1.7 KiB
TOML
[package]
|
|
|
|
name = "gfx"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "gfx"
|
|
path = "lib.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
euclid = { workspace = true }
|
|
fnv = { workspace = true }
|
|
fontsan = { git = "https://github.com/servo/fontsan" }
|
|
gfx_traits = { workspace = true }
|
|
harfbuzz-sys = "0.5"
|
|
ipc-channel = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
libc = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
range = { path = "../range" }
|
|
serde = { workspace = true }
|
|
servo_arc = { workspace = true }
|
|
servo_atoms = { workspace = true }
|
|
servo_url = { path = "../url" }
|
|
smallvec = { workspace = true, features = ["union"] }
|
|
surfman = { workspace = true }
|
|
style = { workspace = true }
|
|
ucd = "0.1.1"
|
|
unicode-bidi = { workspace = true, features = ["with_serde"] }
|
|
unicode-script = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
xi-unicode = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
byteorder = { workspace = true }
|
|
core-foundation = "0.9"
|
|
core-graphics = "0.22"
|
|
core-text = "19.0"
|
|
|
|
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
|
|
freetype = "0.7"
|
|
servo_allocator = { path = "../allocator" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
fontconfig_sys = { package = "yeslogic-fontconfig-sys", version = "3" }
|
|
|
|
[target.'cfg(target_os = "android")'.dependencies]
|
|
xml-rs = "0.8"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
dwrote = "0.11"
|
|
truetype = { version = "0.47.3", features = ["ignore-invalid-language-ids"] }
|