diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-21 11:44:51 +0000 |
commit | 9e3c08db40b8916968b9f30096c7be3f00ce9647 (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /servo/ports/geckolib/Cargo.toml | |
parent | Initial commit. (diff) | |
download | thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.tar.xz thunderbird-9e3c08db40b8916968b9f30096c7be3f00ce9647.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'servo/ports/geckolib/Cargo.toml')
-rw-r--r-- | servo/ports/geckolib/Cargo.toml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/servo/ports/geckolib/Cargo.toml b/servo/ports/geckolib/Cargo.toml new file mode 100644 index 0000000000..cf6126c652 --- /dev/null +++ b/servo/ports/geckolib/Cargo.toml @@ -0,0 +1,33 @@ +[package] +name = "geckoservo" +version = "0.0.1" +authors = ["The Servo Project Developers"] +license = "MPL-2.0" + +[lib] +name = "geckoservo" +path = "lib.rs" + +[features] +gecko_debug = ["style/gecko_debug", "nsstring/gecko_debug"] +gecko_refcount_logging = ["style/gecko_refcount_logging", "servo_arc/gecko_refcount_logging"] + +[dependencies] +atomic_refcell = "0.1" +bincode = "1.0" +cssparser = "0.31" +cstr = "0.2" +dom = { path = "../../../dom/base/rust" } +gecko-profiler = { path = "../../../tools/profiler/rust-api" } +libc = "0.2" +log = {version = "0.4", features = ["release_max_level_info"]} +malloc_size_of = {path = "../../components/malloc_size_of"} +nsstring = {path = "../../../xpcom/rust/nsstring/"} +num-traits = "0.2" +selectors = {path = "../../components/selectors"} +servo_arc = {path = "../../components/servo_arc"} +smallvec = "1.0" +style = {path = "../../components/style", features = ["gecko"]} +style_traits = {path = "../../components/style_traits"} +thin-vec = { version = "0.2.1", features = ["gecko-ffi"] } +to_shmem = {path = "../../components/to_shmem"} |