Skip to content

Commit

Permalink
fix(macros): 🐛 release failed
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Adoo committed Jun 5, 2024
1 parent ec9a548 commit cbb316c
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 33 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ homepage = "https://ribir.org"
keywords = ["gui", "ui", "declarative", "compose-ui"]
license = "MIT"
readme = "README.md"
version = "0.3.0-alpha.5"
version = "0.3.0-beta.1"
rust-version = "1.77.0"

[workspace.dependencies]
Expand Down
10 changes: 5 additions & 5 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ lyon_geom.workspace = true
once_cell.workspace = true
paste.workspace = true
pin-project-lite.workspace = true
ribir_algo = {path = "../algo", version = "0.3.0-alpha.5" }
ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" }
ribir_macros = {path = "../macros", version = "0.3.0-alpha.5" }
ribir_painter = {path = "../painter", version = "0.3.0-alpha.5" }
ribir_text = {path = "../text", version = "0.3.0-alpha.5" }
ribir_algo = {path = "../algo", version = "0.3.0-beta.1" }
ribir_geom = {path = "../geom", version = "0.3.0-beta.1" }
ribir_macros = {path = "../macros", version = "0.3.0-beta.1" }
ribir_painter = {path = "../painter", version = "0.3.0-beta.1" }
ribir_text = {path = "../text", version = "0.3.0-beta.1" }
rxrust.workspace = true
smallvec.workspace = true
winit.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions dev-helper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ version.workspace = true
[dependencies]
futures.workspace = true
once_cell.workspace = true
ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" }
ribir_gpu = {path = "../gpu", version = "0.3.0-alpha.5" }
ribir_painter = {path = "../painter", features = ["png"], version = "0.3.0-alpha.5" }
ribir_geom = {path = "../geom", version = "0.3.0-beta.1" }
ribir_gpu = {path = "../gpu", version = "0.3.0-beta.1" }
ribir_painter = {path = "../painter", features = ["png"], version = "0.3.0-beta.1" }
image.workspace = true
dssim-core.workspace = true


[dev-dependencies]
colored.workspace = true
paste.workspace = true
ribir_core = {path = "../core", version = "0.3.0-alpha.5" }
ribir_core = {path = "../core", version = "0.3.0-beta.1" }
6 changes: 3 additions & 3 deletions gpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ futures = {workspace = true, optional = true}
guillotiere.workspace = true
log.workspace = true
rayon.workspace = true
ribir_algo = {path = "../algo", version = "0.3.0-alpha.5" }
ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" }
ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.3.0-alpha.5" }
ribir_algo = {path = "../algo", version = "0.3.0-beta.1" }
ribir_geom = {path = "../geom", version = "0.3.0-beta.1" }
ribir_painter = {path = "../painter", features = ["tessellation"], version = "0.3.0-beta.1" }
slab = "0.4.9"
wgpu = {workspace = true, optional = true}
zerocopy = {workspace=true, features = ["derive"]}
Expand Down
5 changes: 1 addition & 4 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,11 @@ bitflags.workspace = true
lazy_static.workspace = true
proc-macro2.workspace = true
quote.workspace = true
ribir_painter = {path = "../painter", version = "0.3.0-alpha.5" }
ribir_painter = {path = "../painter", version = "0.3.0-beta.1" }
smallvec.workspace = true
syn = { workspace = true, features = ["fold", "full", "extra-traits"]}
phf = { workspace = true, features = ["macros"] }


[dev-dependencies]
ribir = { path = "../ribir", version = "0.3.0-alpha.1" }

[features]
nightly = []
4 changes: 2 additions & 2 deletions macros/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ pub fn pipe(input: TokenStream) -> TokenStream {
///
/// ## Example
///
/// ```rust
/// ```rust ignore
/// use ribir::prelude::*;
///
/// let label = Stateful::new(1);
Expand All @@ -234,7 +234,7 @@ pub fn pipe(input: TokenStream) -> TokenStream {
/// manually call unsubscribe at the appropriate time, typically in the
/// `on_disposed` method of a widget.
///
/// ```
/// ```rust ignore
/// use ribir::prelude::*;
///
/// let even = Stateful::new(1);
Expand Down
4 changes: 2 additions & 2 deletions painter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ lyon_algorithms = {version = "1.0.3", features = ["serialization"]}
lyon_tessellation = {version = "1.0.3", features = ["serialization"], optional = true}
material-color-utilities-rs = {workspace = true}
rctree.workspace = true
ribir_algo = {path = "../algo", version = "0.3.0-alpha.5" }
ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" }
ribir_algo = {path = "../algo", version = "0.3.0-beta.1" }
ribir_geom = {path = "../geom", version = "0.3.0-beta.1" }
serde = {version = "1.0", features = ["derive"]}
serde_json.workspace = true
tiny-skia-path = {workspace = true}
Expand Down
10 changes: 5 additions & 5 deletions ribir/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ version.workspace = true

[dependencies]
once_cell.workspace = true
ribir_algo = { path = "../algo", version = "0.3.0-alpha.5" }
ribir_core = { path = "../core", version = "0.3.0-alpha.5" }
ribir_gpu = { path = "../gpu", version = "0.3.0-alpha.5" }
ribir_material = { path = "../themes/material", version = "0.3.0-alpha.5", optional = true }
ribir_widgets = { path = "../widgets", version = "0.3.0-alpha.5", optional = true }
ribir_algo = { path = "../algo", version = "0.3.0-beta.1" }
ribir_core = { path = "../core", version = "0.3.0-beta.1" }
ribir_gpu = { path = "../gpu", version = "0.3.0-beta.1" }
ribir_material = { path = "../themes/material", version = "0.3.0-beta.1", optional = true }
ribir_widgets = { path = "../widgets", version = "0.3.0-beta.1", optional = true }
rxrust.workspace = true
wgpu = { workspace = true, optional = true }
winit.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ derive_more.workspace = true
fontdb.workspace = true
log.workspace = true
ordered-float.workspace = true
ribir_algo = {path = "../algo", version = "0.3.0-alpha.5" }
ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" }
ribir_painter = {path = "../painter", version = "0.3.0-alpha.5" }
ribir_algo = {path = "../algo", version = "0.3.0-beta.1" }
ribir_geom = {path = "../geom", version = "0.3.0-beta.1" }
ribir_painter = {path = "../painter", version = "0.3.0-beta.1" }
rustybuzz.workspace = true
unicode-bidi.workspace = true
unicode-script.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions themes/material/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ repository = "https://github.com/RibirX/Ribir/themes/material"
version.workspace = true

[dependencies]
ribir_core = {path = "../../core", version = "0.3.0-alpha.5" }
ribir_widgets = {path = "../../widgets", version = "0.3.0-alpha.5" }
ribir_core = {path = "../../core", version = "0.3.0-beta.1" }
ribir_widgets = {path = "../../widgets", version = "0.3.0-beta.1" }
4 changes: 2 additions & 2 deletions widgets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ version.workspace = true
[dependencies]
lyon_algorithms.workspace = true
lyon_path.workspace = true
ribir_core = {path = "../core", version = "0.3.0-alpha.5" }
ribir_geom = {path = "../geom", version = "0.3.0-alpha.5" }
ribir_core = {path = "../core", version = "0.3.0-beta.1" }
ribir_geom = {path = "../geom", version = "0.3.0-beta.1" }
webbrowser.workspace = true

[dev-dependencies]
Expand Down

0 comments on commit cbb316c

Please sign in to comment.