mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 06:11:16 +00:00
Bump version
This commit is contained in:
parent
af6d3661cb
commit
20cfb65e53
24 changed files with 58 additions and 54 deletions
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sixtyfps-rendering-backend-default"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -17,18 +17,18 @@ x11 = ["sixtyfps-rendering-backend-gl/x11"]
|
|||
wayland = ["sixtyfps-rendering-backend-gl/wayland"]
|
||||
|
||||
[dependencies]
|
||||
sixtyfps-corelib = { version="=0.0.1", path = "../../corelib" }
|
||||
sixtyfps-corelib = { version = "=0.0.2", path = "../../corelib" }
|
||||
cfg-if = "1"
|
||||
sixtyfps-rendering-backend-gl = { version="=0.0.1", path = "../gl", optional = true }
|
||||
sixtyfps-rendering-backend-qt = { version="=0.0.1", path = "../qt", optional = true }
|
||||
sixtyfps-rendering-backend-gl = { version = "=0.0.2", path = "../gl", optional = true }
|
||||
sixtyfps-rendering-backend-qt = { version = "=0.0.2", path = "../qt", optional = true }
|
||||
|
||||
# Desktop platform uses the Qt backend by default
|
||||
[target.'cfg(any(target_os="windows", target_os="macos", target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd"))'.dependencies]
|
||||
sixtyfps-rendering-backend-qt = { version="=0.0.1", path = "../qt" }
|
||||
sixtyfps-rendering-backend-qt = { version = "=0.0.2", path = "../qt" }
|
||||
|
||||
# Other platform uses the Gl backend
|
||||
[target.'cfg(not(any(target_os="windows", target_os="macos", target_os = "linux", target_os = "dragonfly", target_os = "freebsd", target_os = "openbsd", target_os = "netbsd")))'.dependencies]
|
||||
sixtyfps-rendering-backend-gl = { version="=0.0.1", path = "../gl" }
|
||||
sixtyfps-rendering-backend-gl = { version = "=0.0.2", path = "../gl" }
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sixtyfps-rendering-backend-gl"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -18,7 +18,7 @@ wayland = ["winit/wayland", "glutin/wayland", "sixtyfps-corelib/wayland"]
|
|||
default = ["x11"]
|
||||
|
||||
[dependencies]
|
||||
sixtyfps-corelib = { version="=0.0.1", path = "../../corelib" }
|
||||
sixtyfps-corelib = { version = "=0.0.2", path = "../../corelib" }
|
||||
lyon = { version = "0.16" }
|
||||
image = { version = "0.23.10", default-features = false }
|
||||
cgmath = "0.17.0"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "sixtyfps-rendering-backend-qt"
|
||||
version = "0.0.1"
|
||||
version = "0.0.2"
|
||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||
edition = "2018"
|
||||
license = "GPL-3.0-only"
|
||||
|
@ -19,10 +19,10 @@ path = "lib.rs"
|
|||
cpp = "0.5.5"
|
||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }
|
||||
sixtyfps-corelib-macros = { version = "=0.0.1", path = "../../corelib_macros" }
|
||||
sixtyfps-corelib = { version="=0.0.1", path = "../../corelib" }
|
||||
sixtyfps-corelib-macros = { version = "=0.0.2", path = "../../corelib_macros" }
|
||||
sixtyfps-corelib = { version = "=0.0.2", path = "../../corelib" }
|
||||
# FIXME: obviously, we do not want to depends on another backend
|
||||
sixtyfps-rendering-backend-gl = { version="=0.0.1", path = "../gl" }
|
||||
sixtyfps-rendering-backend-gl = { version = "=0.0.2", path = "../gl" }
|
||||
euclid = "0.22.1"
|
||||
pin-weak = "1"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue