mirror of
https://github.com/servo/servo.git
synced 2025-08-02 04:00:32 +01:00
* Sections like `[dependencies.foo]` can be entries in a `[dependencies]` section with the `{key = value}` syntax. * Per-target dependencies can be expressed with more general `cfg(…)` conditions instead of exact target triples: https://github.com/rust-lang/cargo/pull/2328
31 lines
872 B
TOML
31 lines
872 B
TOML
[package]
|
|
name = "script_traits"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "script_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
canvas_traits = {path = "../canvas_traits"}
|
|
gfx_traits = {path = "../gfx_traits"}
|
|
msg = {path = "../msg"}
|
|
net_traits = {path = "../net_traits"}
|
|
plugins = {path = "../plugins"}
|
|
profile_traits = {path = "../profile_traits"}
|
|
style_traits = {path = "../style_traits"}
|
|
util = {path = "../util"}
|
|
devtools_traits = {path = "../devtools_traits"}
|
|
ipc-channel = {git = "https://github.com/servo/ipc-channel"}
|
|
app_units = {version = "0.2.3", features = ["plugins"]}
|
|
euclid = {version = "0.6.4", features = ["plugins"]}
|
|
heapsize = "0.3.0"
|
|
heapsize_plugin = "0.1.2"
|
|
libc = "0.2"
|
|
offscreen_gl_context = "0.1.2"
|
|
serde = "0.7"
|
|
serde_macros = "0.7"
|
|
time = "0.1.12"
|
|
url = {version = "1.0.0", features = ["heap_size"]}
|