mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 14:21:16 +00:00
Increase version numbers
This commit is contained in:
parent
e01bd87df8
commit
98cec35080
23 changed files with 60 additions and 60 deletions
|
@ -144,7 +144,7 @@ configure_package_config_file("cmake/SixtyFPSConfig.cmake.in" "${CMAKE_CURRENT_B
|
||||||
|
|
||||||
write_basic_package_version_file(
|
write_basic_package_version_file(
|
||||||
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SixtyFPS/SixtyFPSConfigVersion.cmake
|
${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/SixtyFPS/SixtyFPSConfigVersion.cmake
|
||||||
VERSION 0.0.6
|
VERSION 0.1.0
|
||||||
COMPATIBILITY ExactVersion
|
COMPATIBILITY ExactVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -159,8 +159,8 @@ set(CPACK_PACKAGE_NAME "SixtyFPS")
|
||||||
set(CPACK_PACKAGE_VENDOR "SixtyFPS")
|
set(CPACK_PACKAGE_VENDOR "SixtyFPS")
|
||||||
set(CPACK_VERBATIM_VARIABLES true)
|
set(CPACK_VERBATIM_VARIABLES true)
|
||||||
set(CPACK_PACKAGE_VERSION_MAJOR 0)
|
set(CPACK_PACKAGE_VERSION_MAJOR 0)
|
||||||
set(CPACK_PACKAGE_VERSION_MINOR 0)
|
set(CPACK_PACKAGE_VERSION_MINOR 1)
|
||||||
set(CPACK_PACKAGE_VERSION_PATCH 6)
|
set(CPACK_PACKAGE_VERSION_PATCH 0)
|
||||||
set(CPACK_PACKAGE_HOMEPAGE_URL "https://sixtyfps.io")
|
set(CPACK_PACKAGE_HOMEPAGE_URL "https://sixtyfps.io")
|
||||||
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
|
set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_LIST_DIR}/../../LICENSE.md")
|
||||||
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")
|
set(CPACK_RESOURCE_FILE_README "${CMAKE_CURRENT_LIST_DIR}/README.md")
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-cpp"
|
name = "sixtyfps-cpp"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -21,8 +21,8 @@ default = ["sixtyfps-interpreter"]
|
||||||
testing = ["sixtyfps-rendering-backend-testing"]
|
testing = ["sixtyfps-rendering-backend-testing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
|
sixtyfps-corelib = { version = "=0.1.0", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.0.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.1.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
sixtyfps-rendering-backend-testing = { version = "=0.0.6", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
sixtyfps-rendering-backend-testing = { version = "=0.1.0", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
||||||
sixtyfps-interpreter = { version = "=0.0.6", path="../../sixtyfps_runtime/interpreter", features = ["ffi"], optional = true }
|
sixtyfps-interpreter = { version = "=0.1.0", path="../../sixtyfps_runtime/interpreter", features = ["ffi"], optional = true }
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,7 @@ copyright = '2020, info@sixtyfps.io'
|
||||||
author = 'info@sixtyfps.io'
|
author = 'info@sixtyfps.io'
|
||||||
|
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = '0.0.6'
|
release = '0.1.0'
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-node"
|
name = "sixtyfps-node"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -22,10 +22,10 @@ testing = ["sixtyfps-rendering-backend-testing"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = "1.5"
|
once_cell = "1.5"
|
||||||
sixtyfps-compilerlib = { version = "=0.0.6", path="../../../sixtyfps_compiler" }
|
sixtyfps-compilerlib = { version = "=0.1.0", path="../../../sixtyfps_compiler" }
|
||||||
sixtyfps-interpreter = { version = "=0.0.6", path="../../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
|
sixtyfps-interpreter = { version = "=0.1.0", path="../../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path="../../../sixtyfps_runtime/corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path="../../../sixtyfps_runtime/corelib" }
|
||||||
sixtyfps-rendering-backend-testing = { version = "=0.0.6", path="../../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
sixtyfps-rendering-backend-testing = { version = "=0.1.0", path="../../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
||||||
scoped-tls-hkt = "0.1"
|
scoped-tls-hkt = "0.1"
|
||||||
neon = "0.8.0"
|
neon = "0.8.0"
|
||||||
css-color-parser2 = "1.0.1"
|
css-color-parser2 = "1.0.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "sixtyfps",
|
"name": "sixtyfps",
|
||||||
"version": "0.0.6",
|
"version": "0.1.0",
|
||||||
"homepage": "https://github.com/sixtyfpsui/sixtyfps",
|
"homepage": "https://github.com/sixtyfpsui/sixtyfps",
|
||||||
"license": "SEE LICENSE IN LICENSE.md",
|
"license": "SEE LICENSE IN LICENSE.md",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps"
|
name = "sixtyfps"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -20,11 +20,11 @@ default = ["backend-gl", "backend-qt"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = "1.5"
|
once_cell = "1.5"
|
||||||
sixtyfps-macros = { version = "=0.0.6", path = "sixtyfps-macros" }
|
sixtyfps-macros = { version = "=0.1.0", path = "sixtyfps-macros" }
|
||||||
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1.2", path = "../../helper_crates/vtable" }
|
vtable = { version = "0.1.2", path = "../../helper_crates/vtable" }
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path="../../sixtyfps_runtime/corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path="../../sixtyfps_runtime/corelib" }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.0.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.1.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
pin-weak = "1"
|
pin-weak = "1"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
|
|
|
@ -482,7 +482,7 @@ macro_rules! include_modules {
|
||||||
/// Helper type that helps checking that the generated code is generated for the right version
|
/// Helper type that helps checking that the generated code is generated for the right version
|
||||||
#[doc(hidden)]
|
#[doc(hidden)]
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
pub struct VersionCheck_0_0_6;
|
pub struct VersionCheck_0_1_0;
|
||||||
|
|
||||||
#[cfg(doctest)]
|
#[cfg(doctest)]
|
||||||
mod compile_fail_tests;
|
mod compile_fail_tests;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-build"
|
name = "sixtyfps-build"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -13,6 +13,6 @@ homepage = "https://sixtyfps.io"
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-compilerlib = { version = "=0.0.6", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
|
sixtyfps-compilerlib = { version = "=0.1.0", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-macros"
|
name = "sixtyfps-macros"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -16,6 +16,6 @@ path = "lib.rs"
|
||||||
[dependencies]
|
[dependencies]
|
||||||
quote = "1.0"
|
quote = "1.0"
|
||||||
proc-macro2 = "1.0.17"
|
proc-macro2 = "1.0.17"
|
||||||
sixtyfps-compilerlib = { version = "=0.0.6", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
sixtyfps-compilerlib = { version = "=0.1.0", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-wasm-interpreter"
|
name = "sixtyfps-wasm-interpreter"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-compilerlib"
|
name = "sixtyfps-compilerlib"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-corelib"
|
name = "sixtyfps-corelib"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -21,7 +21,7 @@ ffi = []
|
||||||
image = { version = "0.23.12", default-features = false, features = [ "png", "jpeg" ] }
|
image = { version = "0.23.12", default-features = false, features = [ "png", "jpeg" ] }
|
||||||
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../helper_crates/const-field-offset" }
|
||||||
vtable = { version="0.1.1", path = "../../helper_crates/vtable" }
|
vtable = { version="0.1.1", path = "../../helper_crates/vtable" }
|
||||||
sixtyfps-corelib-macros = { version = "=0.0.6", path = "../corelib_macros" }
|
sixtyfps-corelib-macros = { version = "=0.1.0", path = "../corelib_macros" }
|
||||||
lyon_path = { version = "0.17.3" }
|
lyon_path = { version = "0.17.3" }
|
||||||
lyon_algorithms = { version = "0.17.1" }
|
lyon_algorithms = { version = "0.17.1" }
|
||||||
lyon_geom = { version = "0.17.0" }
|
lyon_geom = { version = "0.17.0" }
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-corelib-macros"
|
name = "sixtyfps-corelib-macros"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-interpreter"
|
name = "sixtyfps-interpreter"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -16,10 +16,10 @@ display-diagnostics = ["sixtyfps-compilerlib/display-diagnostics"]
|
||||||
ffi = ["spin_on", "sixtyfps-corelib/ffi"]
|
ffi = ["spin_on", "sixtyfps-corelib/ffi"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path = "../corelib", features = ["rtti"] }
|
sixtyfps-corelib = { version = "=0.1.0", path = "../corelib", features = ["rtti"] }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.0.6", path = "../../sixtyfps_runtime/rendering_backends/default", features = ["sixtyfps-rendering-backend-gl"] }
|
sixtyfps-rendering-backend-default = { version = "=0.1.0", path = "../../sixtyfps_runtime/rendering_backends/default", features = ["sixtyfps-rendering-backend-gl"] }
|
||||||
vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
|
vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
|
||||||
sixtyfps-compilerlib = { version = "=0.0.6", path = "../../sixtyfps_compiler" }
|
sixtyfps-compilerlib = { version = "=0.1.0", path = "../../sixtyfps_compiler" }
|
||||||
lyon_path = { version = "0.17.3" }
|
lyon_path = { version = "0.17.3" }
|
||||||
derive_more = "0.99.5"
|
derive_more = "0.99.5"
|
||||||
generativity = "1"
|
generativity = "1"
|
||||||
|
@ -31,7 +31,7 @@ version = "0.1"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
sixtyfps-rendering-backend-gl = { version = "=0.0.6", path = "../../sixtyfps_runtime/rendering_backends/gl" }
|
sixtyfps-rendering-backend-gl = { version = "=0.1.0", path = "../../sixtyfps_runtime/rendering_backends/gl" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-default"
|
name = "sixtyfps-rendering-backend-default"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -17,19 +17,19 @@ wayland = ["sixtyfps-rendering-backend-gl/wayland"]
|
||||||
default = ["sixtyfps-rendering-backend-gl"]
|
default = ["sixtyfps-rendering-backend-gl"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path = "../../corelib" }
|
||||||
sixtyfps-rendering-backend-gl = { version = "=0.0.6", path = "../gl", optional = true }
|
sixtyfps-rendering-backend-gl = { version = "=0.1.0", path = "../gl", optional = true }
|
||||||
sixtyfps-rendering-backend-qt = { version = "=0.0.6", path = "../qt", optional = true }
|
sixtyfps-rendering-backend-qt = { version = "=0.1.0", path = "../qt", optional = true }
|
||||||
cfg-if = "1"
|
cfg-if = "1"
|
||||||
once_cell = "1.5"
|
once_cell = "1.5"
|
||||||
|
|
||||||
# Desktop platform uses the Qt backend by default
|
# 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]
|
[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.6", path = "../qt" }
|
sixtyfps-rendering-backend-qt = { version = "=0.1.0", path = "../qt" }
|
||||||
|
|
||||||
# Other platform uses the Gl backend
|
# 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]
|
[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.6", path = "../gl" }
|
sixtyfps-rendering-backend-gl = { version = "=0.1.0", path = "../gl" }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-gl"
|
name = "sixtyfps-rendering-backend-gl"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -18,7 +18,7 @@ svg = ["resvg", "usvg", "tiny-skia"]
|
||||||
default = ["x11", "svg"]
|
default = ["x11", "svg"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path = "../../corelib" }
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
image = { version = "0.23.12", default-features = false }
|
image = { version = "0.23.12", default-features = false }
|
||||||
rgb = "0.8"
|
rgb = "0.8"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-qt"
|
name = "sixtyfps-rendering-backend-qt"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -19,8 +19,8 @@ path = "lib.rs"
|
||||||
cpp = "0.5.5"
|
cpp = "0.5.5"
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }
|
||||||
sixtyfps-corelib-macros = { version = "=0.0.6", path = "../../corelib_macros" }
|
sixtyfps-corelib-macros = { version = "=0.1.0", path = "../../corelib_macros" }
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path = "../../corelib" }
|
||||||
euclid = "0.22.1"
|
euclid = "0.22.1"
|
||||||
pin-weak = "1"
|
pin-weak = "1"
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-testing"
|
name = "sixtyfps-rendering-backend-testing"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -13,7 +13,7 @@ publish = false
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path = "../../corelib" }
|
||||||
image = { version = "0.23", default-features = false }
|
image = { version = "0.23", default-features = false }
|
||||||
weak-table = "0.3"
|
weak-table = "0.3"
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-compiler"
|
name = "sixtyfps-compiler"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -13,7 +13,7 @@ name = "sixtyfps_compiler"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-compilerlib = { version = "=0.0.6", path = "../../sixtyfps_compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
sixtyfps-compilerlib = { version = "=0.1.0", path = "../../sixtyfps_compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
||||||
structopt = "0.3.14"
|
structopt = "0.3.14"
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
proc-macro2 = "1.0.11"
|
proc-macro2 = "1.0.11"
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-lsp"
|
name = "sixtyfps-lsp"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -17,10 +17,10 @@ name = "sixtyfps-lsp"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-compilerlib = { version = "=0.0.6", path = "../../sixtyfps_compiler"}
|
sixtyfps-compilerlib = { version = "=0.1.0", path = "../../sixtyfps_compiler"}
|
||||||
sixtyfps-interpreter = { version = "=0.0.6", path = "../../sixtyfps_runtime/interpreter"}
|
sixtyfps-interpreter = { version = "=0.1.0", path = "../../sixtyfps_runtime/interpreter"}
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path = "../../sixtyfps_runtime/corelib"}
|
sixtyfps-corelib = { version = "=0.1.0", path = "../../sixtyfps_runtime/corelib"}
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.0.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.1.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
lsp-server = "0.5"
|
lsp-server = "0.5"
|
||||||
lsp-types = "0.83" # must match the version used by lsp-server
|
lsp-types = "0.83" # must match the version used by lsp-server
|
||||||
crossbeam-channel = "0.5" # must match the version used by lsp-server
|
crossbeam-channel = "0.5" # must match the version used by lsp-server
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-viewer"
|
name = "sixtyfps-viewer"
|
||||||
version = "0.0.6"
|
version = "0.1.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
|
@ -9,9 +9,9 @@ repository = "https://github.com/sixtyfpsui/sixtyfps"
|
||||||
homepage = "https://sixtyfps.io"
|
homepage = "https://sixtyfps.io"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.0.6", path="../../sixtyfps_runtime/corelib" }
|
sixtyfps-corelib = { version = "=0.1.0", path="../../sixtyfps_runtime/corelib" }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.0.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.1.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
sixtyfps-interpreter = { version = "=0.0.6", path = "../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
|
sixtyfps-interpreter = { version = "=0.1.0", path = "../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
|
||||||
vtable = { version = "0.1", path="../../helper_crates/vtable" }
|
vtable = { version = "0.1", path="../../helper_crates/vtable" }
|
||||||
structopt = "0.3.14"
|
structopt = "0.3.14"
|
||||||
codemap-diagnostic = "0.1.1"
|
codemap-diagnostic = "0.1.1"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"name": "sixtyfps-vscode",
|
"name": "sixtyfps-vscode",
|
||||||
"displayName": "SixtyFPS-vscode",
|
"displayName": "SixtyFPS-vscode",
|
||||||
"description": "SixtyFPS Language extension",
|
"description": "SixtyFPS Language extension",
|
||||||
"version": "0.0.6",
|
"version": "0.1.0",
|
||||||
"publisher": "SixtyFPS",
|
"publisher": "SixtyFPS",
|
||||||
"icon": "extension-logo.png",
|
"icon": "extension-logo.png",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
|
@ -310,7 +310,7 @@ namespace sixtyfps {{
|
||||||
namespace private_api {{ enum class VersionCheck {{ Major = {}, Minor = {}, Patch = {} }}; class ComponentWindow; }}
|
namespace private_api {{ enum class VersionCheck {{ Major = {}, Minor = {}, Patch = {} }}; class ComponentWindow; }}
|
||||||
namespace cbindgen_private {{ using sixtyfps::private_api::ComponentWindow; using namespace vtable; struct KeyEvent; using private_api::Property; using private_api::PathData; }}
|
namespace cbindgen_private {{ using sixtyfps::private_api::ComponentWindow; using namespace vtable; struct KeyEvent; using private_api::Property; using private_api::PathData; }}
|
||||||
}}",
|
}}",
|
||||||
0, 0, 6,
|
0, 1, 0,
|
||||||
))
|
))
|
||||||
.with_trailer(gen_item_declarations(&items))
|
.with_trailer(gen_item_declarations(&items))
|
||||||
.generate()
|
.generate()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue