Skip to content

Commit 7c93b26

Browse files
committed
Prepare for Stylo v0.2.0 release
Signed-off-by: Nico Burns <[email protected]>
1 parent df459ec commit 7c93b26

File tree

9 files changed

+24
-24
lines changed

9 files changed

+24
-24
lines changed

malloc_size_of/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_malloc_size_of"
3-
version = "0.0.1"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
license = "MIT OR Apache-2.0"
66
repository = "https://github.com/servo/stylo"
@@ -17,8 +17,8 @@ servo = ["string_cache"]
1717
app_units = "0.7"
1818
cssparser = { git = "https://github.com/servo/rust-cssparser", rev = "958a3f098acb92ddacdce18a7ef2c4a87ac3326f" }
1919
euclid = "0.22"
20-
selectors = { path = "../selectors" }
21-
servo_arc = { path = "../servo_arc" }
20+
selectors = { version = "0.27", path = "../selectors" }
21+
servo_arc = { version = "0.4", path = "../servo_arc" }
2222
smallbitvec = "2.3.0"
2323
smallvec = "1.13"
2424
string_cache = { version = "0.8", optional = true }

selectors/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "selectors"
3-
version = "0.26.0"
3+
version = "0.27.0"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/selectors/"
66
description = "CSS Selectors matching for Rust"

style/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo"
3-
version = "0.0.1"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
license = "MPL-2.0"
66
repository = "https://github.com/servo/stylo"
@@ -59,7 +59,7 @@ bitflags = "2"
5959
byteorder = "1.0"
6060
cssparser = { git = "https://github.com/servo/rust-cssparser", rev = "958a3f098acb92ddacdce18a7ef2c4a87ac3326f" }
6161
derive_more = { version = "0.99", default-features = false, features = ["add", "add_assign", "deref", "deref_mut", "from"] }
62-
dom = { path = "../stylo_dom", version = "0.1", package = "stylo_dom" }
62+
dom = { version = "0.2", path = "../stylo_dom", package = "stylo_dom" }
6363
new_debug_unreachable = "1.0"
6464
encoding_rs = {version = "0.8", optional = true}
6565
euclid = "0.22"
@@ -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", package = "stylo_malloc_size_of" }
73+
malloc_size_of = { version = "0.2", 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"
@@ -90,11 +90,11 @@ stylo_atoms = {path = "../stylo_atoms", optional = true}
9090
smallbitvec = "2.3.0"
9191
smallvec = "1.0"
9292
static_assertions = "1.1"
93-
static_prefs = { version = "0.1", path = "../stylo_static_prefs", package = "stylo_static_prefs" }
93+
static_prefs = { version = "0.2", path = "../stylo_static_prefs", package = "stylo_static_prefs" }
9494
string_cache = { version = "0.8", optional = true }
95-
style_config = { version = "0.1", path = "../stylo_config", package = "stylo_config", optional = true }
96-
style_derive = { path = "../style_derive", package = "stylo_derive" }
97-
style_traits = { path = "../style_traits", package = "stylo_traits" }
95+
style_config = { version = "0.2", path = "../stylo_config", package = "stylo_config", optional = true }
96+
style_derive = { version = "0.2", path = "../style_derive", package = "stylo_derive" }
97+
style_traits = { version = "0.2", 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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_derive"
3-
version = "0.0.1"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
license = "MPL-2.0"
66
repository = "https://github.com/servo/stylo"

style_traits/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_traits"
3-
version = "0.0.1"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
license = "MPL-2.0"
66
repository = "https://github.com/servo/stylo"
@@ -20,13 +20,13 @@ 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", package = "stylo_malloc_size_of" }
23+
malloc_size_of = { version = "0.2", path = "../malloc_size_of", package = "stylo_malloc_size_of" }
2424
malloc_size_of_derive = "0.1"
25-
selectors = { path = "../selectors" }
25+
selectors = { version = "0.27", path = "../selectors" }
2626
serde = "1.0"
27-
servo_arc = { path = "../servo_arc" }
28-
stylo_atoms = { path = "../stylo_atoms", optional = true }
27+
servo_arc = { version = "0.4", path = "../servo_arc" }
28+
stylo_atoms = { version = "0.2", path = "../stylo_atoms", optional = true }
2929
thin-vec = "0.2"
30-
to_shmem = { path = "../to_shmem" }
31-
to_shmem_derive = { path = "../to_shmem_derive" }
30+
to_shmem = { version = "0.1", path = "../to_shmem" }
31+
to_shmem_derive = { version = "0.1", path = "../to_shmem_derive" }
3232
url = { version = "2.5", optional = true }

stylo_atoms/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_atoms"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/stylo_atoms/"
66
description = "Interned string type for the Servo and Stylo projects"

stylo_config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_config"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/stylo_config/"
66
description = "Runtime configuration for Stylo"

stylo_dom/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_dom"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/stylo_dom/"
66
description = "DOM state types for Stylo"
@@ -14,4 +14,4 @@ path = "lib.rs"
1414

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

stylo_static_prefs/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "stylo_static_prefs"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["The Servo Project Developers"]
55
documentation = "https://docs.rs/stylo_static_prefs/"
66
description = "Static configuration for Stylo"

0 commit comments

Comments
 (0)