Cargo.toml (646B)
1 [package] 2 name = "malloc_size_of" 3 version = "0.0.1" 4 authors = ["The Servo Project Developers"] 5 license = "MIT OR Apache-2.0" 6 repository = "https://github.com/servo/stylo" 7 description = "An allocator-agnostic crate for measuring the heap size of a value" 8 edition = "2021" 9 10 [lib] 11 path = "lib.rs" 12 13 [features] 14 gecko = ["thin-vec/gecko-ffi"] 15 servo = ["string_cache"] 16 17 [dependencies] 18 app_units = "0.7" 19 cssparser = "0.36" 20 euclid = "0.22" 21 selectors = { path = "../selectors" } 22 servo_arc = { path = "../servo_arc" } 23 smallbitvec = "2.3.0" 24 smallvec = "1.0" 25 string_cache = { version = "0.8", optional = true } 26 thin-vec = { version = "0.2.1" } 27 void = "1.0.2"