Cargo.toml (1139B)
1 [package] 2 name = "geckoservo" 3 version = "0.0.1" 4 authors = ["The Servo Project Developers"] 5 license = "MPL-2.0" 6 edition = "2021" 7 8 [lib] 9 name = "geckoservo" 10 path = "lib.rs" 11 12 [features] 13 gecko_debug = ["style/gecko_debug", "nsstring/gecko_debug"] 14 gecko_refcount_logging = ["style/gecko_refcount_logging", "servo_arc/gecko_refcount_logging"] 15 16 [dependencies] 17 atomic_refcell = "0.1" 18 cssparser = "0.36" 19 cstr = "0.2" 20 dom = { path = "../../../dom/base/rust" } 21 ipdl_utils = { path = "../../../ipc/rust/ipdl_utils" } 22 gecko-profiler = { path = "../../../tools/profiler/rust-api" } 23 libc = "0.2" 24 log = {version = "0.4", features = ["release_max_level_info"]} 25 malloc_size_of = {path = "../../components/malloc_size_of"} 26 nsstring = {path = "../../../xpcom/rust/nsstring/"} 27 num-traits = "0.2" 28 selectors = {path = "../../components/selectors"} 29 servo_arc = {path = "../../components/servo_arc"} 30 smallvec = "1.0" 31 style = {path = "../../components/style", features = ["gecko"]} 32 style_traits = {path = "../../components/style_traits"} 33 thin-vec = { version = "0.2.1", features = ["gecko-ffi"] } 34 to_shmem = {path = "../../components/to_shmem"} 35 lazy_static = "1.0"