Skip to content

Commit 9f2ffd4

Browse files
committed
Rename upstream crates to stylo*
Signed-off-by: Nico Burns <nico@nicoburns.com>
1 parent 1587865 commit 9f2ffd4

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"
@@ -70,7 +70,7 @@ itertools = "0.10"
7070
itoa = "1.0"
7171
lazy_static = "1"
7272
log = "0.4"
73-
malloc_size_of = { path = "../malloc_size_of" }
73+
malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" }
7474
malloc_size_of_derive = "0.1"
7575
markup5ever = { version = "0.15", optional = true }
7676
matches = "0.1"
@@ -93,8 +93,8 @@ static_assertions = "1.1"
9393
static_prefs = { version = "0.1", path = "../stylo_static_prefs", package = "stylo_static_prefs" }
9494
string_cache = { version = "0.8", optional = true }
9595
style_config = { version = "0.1", path = "../stylo_config", package = "stylo_config", optional = true }
96-
style_derive = {path = "../style_derive"}
97-
style_traits = {path = "../style_traits"}
96+
style_derive = { path = "../style_derive", package = "stylo_derive" }
97+
style_traits = { path = "../style_traits", package = "stylo_traits" }
9898
to_shmem = {path = "../to_shmem"}
9999
to_shmem_derive = {path = "../to_shmem_derive"}
100100
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 @@ app_units = "0.7"
2020
bitflags = "2"
2121
cssparser = { git = "https://github.com/servo/rust-cssparser", rev = "958a3f098acb92ddacdce18a7ef2c4a87ac3326f" }
2222
euclid = "0.22"
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)