diff options
author | Anthony Ramine <nox@nox.paris> | 2019-09-09 17:21:26 +0200 |
---|---|---|
committer | Anthony Ramine <nox@nox.paris> | 2019-09-11 10:36:30 +0200 |
commit | 4444c5a2adfec909e165497ca331c09e02ee54cc (patch) | |
tree | bc4fea59172122f5a08d6e8d231f5fe3cf616569 /components/layout_2020/Cargo.toml | |
parent | 86904757e66285412de162483f3ba2a6db35403e (diff) | |
download | servo-4444c5a2adfec909e165497ca331c09e02ee54cc.tar.gz servo-4444c5a2adfec909e165497ca331c09e02ee54cc.zip |
Import victor's layout system 🍷
Diffstat (limited to 'components/layout_2020/Cargo.toml')
-rw-r--r-- | components/layout_2020/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/components/layout_2020/Cargo.toml b/components/layout_2020/Cargo.toml index 296d069c7e1..af6b53ace4b 100644 --- a/components/layout_2020/Cargo.toml +++ b/components/layout_2020/Cargo.toml @@ -14,6 +14,8 @@ doctest = false [dependencies] app_units = "0.7" +atomic_refcell = "0.1" +cssparser = "0.25" euclid = "0.20" fnv = "1.0" gfx = {path = "../gfx"} @@ -21,12 +23,15 @@ gfx_traits = {path = "../gfx_traits"} ipc-channel = "0.12" libc = "0.2" malloc_size_of = { path = "../malloc_size_of" } +matches = "0.1" msg = {path = "../msg"} range = {path = "../range"} rayon = "1" +rayon_croissant = "0.1.1" script_layout_interface = {path = "../script_layout_interface"} script_traits = {path = "../script_traits"} serde = "1.0" +servo_arc = { path = "../servo_arc" } servo_url = {path = "../url"} style = {path = "../style", features = ["servo", "servo-layout-2020"]} style_traits = {path = "../style_traits"} |