From 898f2ca79eb0baece2a218e599a5b8ab0f3f4368 Mon Sep 17 00:00:00 2001 From: Nico Burns Date: Mon, 17 Mar 2025 15:34:22 +1300 Subject: [PATCH] Prepare for Stylo v0.2.0 release Signed-off-by: Nico Burns --- malloc_size_of/Cargo.toml | 6 +++--- selectors/Cargo.toml | 4 ++-- style/Cargo.toml | 18 +++++++++--------- style_derive/Cargo.toml | 2 +- style_traits/Cargo.toml | 14 +++++++------- stylo_atoms/Cargo.toml | 2 +- stylo_config/Cargo.toml | 2 +- stylo_dom/Cargo.toml | 4 ++-- stylo_static_prefs/Cargo.toml | 2 +- to_shmem/Cargo.toml | 2 +- 10 files changed, 28 insertions(+), 28 deletions(-) diff --git a/malloc_size_of/Cargo.toml b/malloc_size_of/Cargo.toml index f8a512cc01..1a3d1be71b 100644 --- a/malloc_size_of/Cargo.toml +++ b/malloc_size_of/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_malloc_size_of" -version = "0.0.1" +version = "0.2.0" authors = ["The Servo Project Developers"] license = "MIT OR Apache-2.0" repository = "https://github.com/servo/stylo" @@ -17,8 +17,8 @@ servo = ["string_cache"] app_units = "0.7" cssparser = "0.35" euclid = "0.22" -selectors = { path = "../selectors" } -servo_arc = { path = "../servo_arc" } +selectors = { version = "0.27", path = "../selectors" } +servo_arc = { version = "0.4", path = "../servo_arc" } smallbitvec = "2.3.0" smallvec = "1.13" string_cache = { version = "0.8", optional = true } diff --git a/selectors/Cargo.toml b/selectors/Cargo.toml index 4e55698e62..46e145a441 100644 --- a/selectors/Cargo.toml +++ b/selectors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "selectors" -version = "0.26.0" +version = "0.27.0" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/selectors/" description = "CSS Selectors matching for Rust" @@ -29,7 +29,7 @@ phf = "0.11" precomputed-hash = "0.1" servo_arc = { version = "0.4", path = "../servo_arc" } smallvec = "1.0" -to_shmem = { version = "0.1", path = "../to_shmem", features = ["servo_arc"], optional = true } +to_shmem = { version = "0.2", path = "../to_shmem", features = ["servo_arc"], optional = true } to_shmem_derive = { version = "0.1", path = "../to_shmem_derive", optional = true } new_debug_unreachable = "1" diff --git a/style/Cargo.toml b/style/Cargo.toml index 4e934bc115..be4c896293 100644 --- a/style/Cargo.toml +++ b/style/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo" -version = "0.0.1" +version = "0.2.0" authors = ["The Servo Project Developers"] license = "MPL-2.0" repository = "https://github.com/servo/stylo" @@ -59,7 +59,7 @@ bitflags = "2" byteorder = "1.0" cssparser = "0.35" derive_more = { version = "0.99", default-features = false, features = ["add", "add_assign", "deref", "deref_mut", "from"] } -dom = { path = "../stylo_dom", version = "0.1", package = "stylo_dom" } +dom = { version = "0.2", path = "../stylo_dom", package = "stylo_dom" } new_debug_unreachable = "1.0" encoding_rs = {version = "0.8", optional = true} euclid = "0.22" @@ -70,7 +70,7 @@ itertools = "0.10" itoa = "1.0" lazy_static = "1" log = "0.4" -malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" } +malloc_size_of = { version = "0.2", path = "../malloc_size_of", package = "stylo_malloc_size_of" } malloc_size_of_derive = "0.1" markup5ever = { version = "0.15", optional = true } matches = "0.1" @@ -90,13 +90,13 @@ stylo_atoms = {path = "../stylo_atoms", optional = true} smallbitvec = "2.3.0" smallvec = "1.0" static_assertions = "1.1" -static_prefs = { version = "0.1", path = "../stylo_static_prefs", package = "stylo_static_prefs" } +static_prefs = { version = "0.2", 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", package = "stylo_derive" } -style_traits = { path = "../style_traits", package = "stylo_traits" } -to_shmem = {path = "../to_shmem"} -to_shmem_derive = {path = "../to_shmem_derive"} +style_config = { version = "0.2", path = "../stylo_config", package = "stylo_config", optional = true } +style_derive = { version = "0.2", path = "../style_derive", package = "stylo_derive" } +style_traits = { version = "0.2", path = "../style_traits", package = "stylo_traits" } +to_shmem = { version = "0.2", path = "../to_shmem" } +to_shmem_derive = { version = "0.1", path = "../to_shmem_derive" } thin-vec = "0.2.1" uluru = "3.0" unicode-bidi = { version = "0.3", default-features = false } diff --git a/style_derive/Cargo.toml b/style_derive/Cargo.toml index 70ebd2f2a7..07a16839c9 100644 --- a/style_derive/Cargo.toml +++ b/style_derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_derive" -version = "0.0.1" +version = "0.2.0" authors = ["The Servo Project Developers"] license = "MPL-2.0" repository = "https://github.com/servo/stylo" diff --git a/style_traits/Cargo.toml b/style_traits/Cargo.toml index 0975ea5344..d173054058 100644 --- a/style_traits/Cargo.toml +++ b/style_traits/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_traits" -version = "0.0.1" +version = "0.2.0" authors = ["The Servo Project Developers"] license = "MPL-2.0" repository = "https://github.com/servo/stylo" @@ -20,13 +20,13 @@ app_units = "0.7" bitflags = "2" cssparser = "0.35" euclid = "0.22" -malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" } +malloc_size_of = { version = "0.2", path = "../malloc_size_of", package = "stylo_malloc_size_of" } malloc_size_of_derive = "0.1" -selectors = { path = "../selectors" } +selectors = { version = "0.27", path = "../selectors" } serde = "1.0" -servo_arc = { path = "../servo_arc" } -stylo_atoms = { path = "../stylo_atoms", optional = true } +servo_arc = { version = "0.4", path = "../servo_arc" } +stylo_atoms = { version = "0.2", path = "../stylo_atoms", optional = true } thin-vec = "0.2" -to_shmem = { path = "../to_shmem" } -to_shmem_derive = { path = "../to_shmem_derive" } +to_shmem = { version = "0.2", path = "../to_shmem" } +to_shmem_derive = { version = "0.1", path = "../to_shmem_derive" } url = { version = "2.5", optional = true } diff --git a/stylo_atoms/Cargo.toml b/stylo_atoms/Cargo.toml index e873a0adc3..acf967010a 100644 --- a/stylo_atoms/Cargo.toml +++ b/stylo_atoms/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_atoms" -version = "0.1.0" +version = "0.2.0" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/stylo_atoms/" description = "Interned string type for the Servo and Stylo projects" diff --git a/stylo_config/Cargo.toml b/stylo_config/Cargo.toml index 6c9e8a4db4..e185cb818c 100644 --- a/stylo_config/Cargo.toml +++ b/stylo_config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_config" -version = "0.1.0" +version = "0.2.0" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/stylo_config/" description = "Runtime configuration for Stylo" diff --git a/stylo_dom/Cargo.toml b/stylo_dom/Cargo.toml index e6f8a2831b..3d915fc281 100644 --- a/stylo_dom/Cargo.toml +++ b/stylo_dom/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_dom" -version = "0.1.0" +version = "0.2.0" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/stylo_dom/" description = "DOM state types for Stylo" @@ -14,4 +14,4 @@ path = "lib.rs" [dependencies] bitflags = "2" -malloc_size_of = { path = "../malloc_size_of", package = "stylo_malloc_size_of" } +malloc_size_of = { version = "0.2", path = "../malloc_size_of", package = "stylo_malloc_size_of" } diff --git a/stylo_static_prefs/Cargo.toml b/stylo_static_prefs/Cargo.toml index 48d738cddc..a6d6838a1f 100644 --- a/stylo_static_prefs/Cargo.toml +++ b/stylo_static_prefs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stylo_static_prefs" -version = "0.1.0" +version = "0.2.0" authors = ["The Servo Project Developers"] documentation = "https://docs.rs/stylo_static_prefs/" description = "Static configuration for Stylo" diff --git a/to_shmem/Cargo.toml b/to_shmem/Cargo.toml index cfb9db60f0..58147a5e1d 100644 --- a/to_shmem/Cargo.toml +++ b/to_shmem/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "to_shmem" -version = "0.1.0" +version = "0.2.0" authors = ["The Servo Project Developers"] license = "MPL-2.0" repository = "https://github.com/servo/stylo"