Skip to content

Commit c0f5a44

Browse files
committed
Rename upstream crates to stylo*
Signed-off-by: Nico Burns <[email protected]>
1 parent fef14bb commit c0f5a44

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

malloc_size_of/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "malloc_size_of"
2+
name = "stylo_malloc_size_of"
33
version = "0.0.1"
44
authors = ["The Servo Project Developers"]
55
license = "MIT OR Apache-2.0"

style/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "style"
2+
name = "stylo"
33
version = "0.0.1"
44
authors = ["The Servo Project Developers"]
55
license = "MPL-2.0"
@@ -69,7 +69,7 @@ itertools = "0.10"
6969
itoa = "1.0"
7070
lazy_static = "1"
7171
log = "0.4"
72-
malloc_size_of = { path = "../malloc_size_of" }
72+
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }
7373
malloc_size_of_derive = "0.1"
7474
markup5ever = { version = "0.15", optional = true }
7575
matches = "0.1"
@@ -92,8 +92,8 @@ static_assertions = "1.1"
9292
static_prefs = { version = "0.1", path = "../stylo_static_prefs", package = "stylo_static_prefs" }
9393
string_cache = { version = "0.8", optional = true }
9494
style_config = { version = "0.1", path = "../stylo_config", package = "stylo_config", optional = true }
95-
style_derive = {path = "../style_derive"}
96-
style_traits = {path = "../style_traits"}
95+
style_derive = { path = "../style_derive", package = "stylo_derive" }
96+
style_traits = { path = "../style_traits", package = "stylo_traits" }
9797
to_shmem = {path = "../to_shmem"}
9898
to_shmem_derive = {path = "../to_shmem_derive"}
9999
thin-vec = "0.2.1"

style_derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "style_derive"
2+
name = "stylo_derive"
33
version = "0.0.1"
44
authors = ["The Servo Project Developers"]
55
license = "MPL-2.0"

style_traits/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "style_traits"
2+
name = "stylo_traits"
33
version = "0.0.1"
44
authors = ["The Servo Project Developers"]
55
license = "MPL-2.0"
@@ -20,7 +20,7 @@ bitflags = "2"
2020
cssparser = "0.34"
2121
euclid = "0.22"
2222
lazy_static = "1"
23-
malloc_size_of = { path = "../malloc_size_of" }
23+
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }
2424
malloc_size_of_derive = "0.1"
2525
selectors = { path = "../selectors" }
2626
serde = "1.0"

stylo_dom/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ path = "lib.rs"
1414

1515
[dependencies]
1616
bitflags = "2"
17-
malloc_size_of = { path = "../malloc_size_of" }
17+
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }

0 commit comments

Comments
 (0)