mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
The new strategy for dependencies with upstream in Gecko is to manage them in separate repositories, which will more easily allow rebasing our changes on top of newer Gecko work.
18 lines
404 B
TOML
18 lines
404 B
TOML
[package]
|
|
name = "servo_geometry"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "servo_geometry"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
app_units = { workspace = true }
|
|
euclid = { workspace = true }
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { workspace = true }
|
|
webrender_api = { workspace = true }
|