Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion malloc_size_of/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "malloc_size_of"
name = "stylo_malloc_size_of"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MIT OR Apache-2.0"
Expand Down
8 changes: 4 additions & 4 deletions style/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "style"
name = "stylo"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
Expand Down Expand Up @@ -70,7 +70,7 @@ itertools = "0.10"
itoa = "1.0"
lazy_static = "1"
log = "0.4"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }
malloc_size_of_derive = "0.1"
markup5ever = { version = "0.15", optional = true }
matches = "0.1"
Expand All @@ -93,8 +93,8 @@ static_assertions = "1.1"
static_prefs = { version = "0.1", path = "../stylo_static_prefs", package = "stylo_static_prefs" }
string_cache = { version = "0.8", optional = true }
style_config = { version = "0.1", path = "../stylo_config", package = "stylo_config", optional = true }
style_derive = {path = "../style_derive"}
style_traits = {path = "../style_traits"}
style_derive = { path = "../style_derive", package = "stylo_derive" }
style_traits = { path = "../style_traits", package = "stylo_traits" }
to_shmem = {path = "../to_shmem"}
to_shmem_derive = {path = "../to_shmem_derive"}
thin-vec = "0.2.1"
Expand Down
2 changes: 1 addition & 1 deletion style_derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "style_derive"
name = "stylo_derive"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
Expand Down
4 changes: 2 additions & 2 deletions style_traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "style_traits"
name = "stylo_traits"
version = "0.0.1"
authors = ["The Servo Project Developers"]
license = "MPL-2.0"
Expand All @@ -20,7 +20,7 @@ app_units = "0.7"
bitflags = "2"
cssparser = { git = "https://github.com/servo/rust-cssparser", rev = "958a3f098acb92ddacdce18a7ef2c4a87ac3326f" }
euclid = "0.22"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }
malloc_size_of_derive = "0.1"
selectors = { path = "../selectors" }
serde = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion stylo_dom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ path = "lib.rs"

[dependencies]
bitflags = "2"
malloc_size_of = { path = "../malloc_size_of" }
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }