blob: 9ef2cefe1127be6340b090fbfc09da42e751d629 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[package]
name = "to_shmem"
version = "0.0.0"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
edition = "2018"
publish = false
[lib]
name = "to_shmem"
path = "lib.rs"
[features]
servo = ["cssparser/serde", "string_cache"]
gecko = []
[dependencies]
cssparser = { workspace = true }
servo_arc = { path = "../servo_arc" }
smallbitvec = { workspace = true }
smallvec = { workspace = true }
string_cache = { workspace = true, optional = true }
|