mirror of
https://github.com/slint-ui/slint.git
synced 2025-10-01 06:11:16 +00:00
Bump version number to 0.2.0
This commit is contained in:
parent
2b629a811b
commit
42f1964e54
51 changed files with 91 additions and 91 deletions
|
@ -195,7 +195,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.1.6
|
VERSION 0.2.0
|
||||||
COMPATIBILITY SameMinorVersion
|
COMPATIBILITY SameMinorVersion
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -240,8 +240,8 @@ set(CPACK_PACKAGE_NAME "SixtyFPS-cpp")
|
||||||
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 1)
|
set(CPACK_PACKAGE_VERSION_MINOR 2)
|
||||||
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")
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-cpp"
|
name = "sixtyfps-cpp"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -32,10 +32,10 @@ testing = ["sixtyfps-rendering-backend-testing"]
|
||||||
default = ["backend-gl", "x11", "backend-qt"]
|
default = ["backend-gl", "x11", "backend-qt"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
|
sixtyfps-corelib = { version = "=0.2.0", path="../../sixtyfps_runtime/corelib", features = ["ffi"] }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
sixtyfps-rendering-backend-testing = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
sixtyfps-rendering-backend-testing = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/testing", optional = true }
|
||||||
sixtyfps-interpreter = { version = "=0.1.6", path="../../sixtyfps_runtime/interpreter", default-features = false, features = ["ffi"], optional = true }
|
sixtyfps-interpreter = { version = "=0.2.0", path="../../sixtyfps_runtime/interpreter", default-features = false, features = ["ffi"], optional = true }
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
cbindgen = "0.20"
|
cbindgen = "0.20"
|
||||||
|
|
|
@ -26,7 +26,7 @@ copyright = "2021, 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
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
|
|
||||||
cpp_index_common_prefix = ["sixtyfps::", "sixtyfps::interpreter::"]
|
cpp_index_common_prefix = ["sixtyfps::", "sixtyfps::interpreter::"]
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-node"
|
name = "sixtyfps-node"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -21,9 +21,9 @@ name = "sixtyfps_node_native"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = "1.5"
|
once_cell = "1.5"
|
||||||
sixtyfps-compilerlib = { version = "=0.1.6", path="../../../sixtyfps_compiler" }
|
sixtyfps-compilerlib = { version = "=0.2.0", path="../../../sixtyfps_compiler" }
|
||||||
sixtyfps-interpreter = { version = "=0.1.6", path="../../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
|
sixtyfps-interpreter = { version = "=0.2.0", path="../../../sixtyfps_runtime/interpreter", features = ["display-diagnostics"] }
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path="../../../sixtyfps_runtime/corelib" }
|
sixtyfps-corelib = { version = "=0.2.0", path="../../../sixtyfps_runtime/corelib" }
|
||||||
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.1.6",
|
"version": "0.2.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": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps"
|
name = "sixtyfps"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -26,11 +26,11 @@ std = ["sixtyfps-corelib/std"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
once_cell = { version = "1.5", default-features = false, features = ["alloc"] }
|
once_cell = { version = "1.5", default-features = false, features = ["alloc"] }
|
||||||
sixtyfps-macros = { version = "=0.1.6", path = "sixtyfps-macros" }
|
sixtyfps-macros = { version = "=0.2.0", path = "sixtyfps-macros" }
|
||||||
const-field-offset = { version = "0.1.2", path = "../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1.2", path = "../../helper_crates/const-field-offset" }
|
||||||
vtable = { version = "0.1.5", path = "../../helper_crates/vtable" }
|
vtable = { version = "0.1.5", path = "../../helper_crates/vtable" }
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path="../../sixtyfps_runtime/corelib", default-features = false }
|
sixtyfps-corelib = { version = "=0.2.0", path="../../sixtyfps_runtime/corelib", default-features = false }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
pin-weak = { version = "1.1", default-features = false }
|
pin-weak = { version = "1.1", default-features = false }
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
|
|
|
@ -767,7 +767,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_1_6;
|
pub struct VersionCheck_0_2_0;
|
||||||
|
|
||||||
#[cfg(doctest)]
|
#[cfg(doctest)]
|
||||||
mod compile_fail_tests;
|
mod compile_fail_tests;
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-build"
|
name = "sixtyfps-build"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -16,6 +16,6 @@ homepage = "https://sixtyfps.io"
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
|
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../../sixtyfps_compiler", features = ["rust", "display-diagnostics"] }
|
||||||
thiserror = "1"
|
thiserror = "1"
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-macros"
|
name = "sixtyfps-macros"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -19,5 +19,5 @@ 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.1.6", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../../sixtyfps_compiler", features = ["proc_macro_span", "rust", "display-diagnostics"] }
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-wasm-interpreter"
|
name = "sixtyfps-wasm-interpreter"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "src"
|
name = "src"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "_7gui"
|
name = "_7gui"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gallery"
|
name = "gallery"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "imagefilter"
|
name = "imagefilter"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "memory"
|
name = "memory"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "memory",
|
"name": "memory",
|
||||||
"version": "0.1.6",
|
"version": "0.2.0",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"sixtyfps": "../../api/sixtyfps-node"
|
"sixtyfps": "../../api/sixtyfps-node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "plotter"
|
name = "plotter"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "0.1.6",
|
"version": "0.2.0",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"sixtyfps": "../../../api/sixtyfps-node"
|
"sixtyfps": "../../../api/sixtyfps-node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo"
|
name = "printerdemo"
|
||||||
version = "0.1.6"
|
version = "0.2.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 @@
|
||||||
{
|
{
|
||||||
"name": "printerdemo",
|
"name": "printerdemo",
|
||||||
"version": "0.1.6",
|
"version": "0.2.0",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"sixtyfps": "../../../api/sixtyfps-node"
|
"sixtyfps": "../../../api/sixtyfps-node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "printerdemo_old"
|
name = "printerdemo_old"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "slide_puzzle"
|
name = "slide_puzzle"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "todo",
|
"name": "todo",
|
||||||
"version": "0.1.6",
|
"version": "0.2.0",
|
||||||
"main": "main.js",
|
"main": "main.js",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"sixtyfps": "../../../api/sixtyfps-node"
|
"sixtyfps": "../../../api/sixtyfps-node"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "todo"
|
name = "todo"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-compilerlib"
|
name = "sixtyfps-compilerlib"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -47,7 +47,7 @@ once_cell = "1"
|
||||||
url = "2.2.1"
|
url = "2.2.1"
|
||||||
dunce = "1.0.1"
|
dunce = "1.0.1"
|
||||||
linked_hash_set = "0.1.4"
|
linked_hash_set = "0.1.4"
|
||||||
sixtyfps-common = { version = "=0.1.6", path = "../sixtyfps_runtime/common" }
|
sixtyfps-common = { version = "=0.2.0", path = "../sixtyfps_runtime/common" }
|
||||||
|
|
||||||
# for processing and embedding the rendered image (texture)
|
# for processing and embedding the rendered image (texture)
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "parser_test_macro"
|
name = "parser_test_macro"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -95,7 +95,7 @@ export AboutSixtyFPS := Rectangle {
|
||||||
preferred-width: 128px;
|
preferred-width: 128px;
|
||||||
}
|
}
|
||||||
Text {
|
Text {
|
||||||
text: "Version 0.1.6\nhttps://sixtyfps.io/";
|
text: "Version 0.2.0\nhttps://sixtyfps.io/";
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
horizontal-alignment: center;
|
horizontal-alignment: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-common"
|
name = "sixtyfps-common"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-corelib"
|
name = "sixtyfps-corelib"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -36,7 +36,7 @@ libm = ["num-traits/libm", "euclid/libm"]
|
||||||
[dependencies]
|
[dependencies]
|
||||||
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.1.6", path = "../corelib_macros" }
|
sixtyfps-corelib-macros = { version = "=0.2.0", path = "../corelib_macros" }
|
||||||
lyon_path = { version = "0.17.3" , optional = true }
|
lyon_path = { version = "0.17.3" , optional = true }
|
||||||
lyon_algorithms = { version = "0.17.1" , optional = true }
|
lyon_algorithms = { version = "0.17.1" , optional = true }
|
||||||
lyon_geom = { version = "0.17.0", optional = true }
|
lyon_geom = { version = "0.17.0", optional = true }
|
||||||
|
@ -58,7 +58,7 @@ rgb = "0.8.27"
|
||||||
pin-project = "1"
|
pin-project = "1"
|
||||||
atomic-polyfill = { version = "0.1.5" }
|
atomic-polyfill = { version = "0.1.5" }
|
||||||
num-traits = { version = "0.2", default-features = false }
|
num-traits = { version = "0.2", default-features = false }
|
||||||
sixtyfps-common = { version = "=0.1.6", path = "../common" }
|
sixtyfps-common = { version = "=0.2.0", path = "../common" }
|
||||||
|
|
||||||
defmt = { version = "0.3.0", optional = true }
|
defmt = { version = "0.3.0", optional = true }
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-corelib-macros"
|
name = "sixtyfps-corelib-macros"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-interpreter"
|
name = "sixtyfps-interpreter"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -26,10 +26,10 @@ backend-qt = ["sixtyfps-rendering-backend-default/sixtyfps-rendering-backend-qt"
|
||||||
default = ["backend-gl", "x11", "backend-qt"]
|
default = ["backend-gl", "x11", "backend-qt"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../corelib", features = ["rtti"] }
|
sixtyfps-corelib = { version = "=0.2.0", path = "../corelib", features = ["rtti"] }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.1.6", path = "../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.2.0", path = "../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
|
vtable = { version = "0.1.1", path="../../helper_crates/vtable" }
|
||||||
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../sixtyfps_compiler" }
|
sixtyfps-compilerlib = { version = "=0.2.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"
|
||||||
|
@ -41,7 +41,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.1.6", path = "../../sixtyfps_runtime/rendering_backends/gl" }
|
sixtyfps-rendering-backend-gl = { version = "=0.2.0", path = "../../sixtyfps_runtime/rendering_backends/gl" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-default"
|
name = "sixtyfps-rendering-backend-default"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -19,7 +19,7 @@ x11 = ["sixtyfps-rendering-backend-gl/x11"]
|
||||||
wayland = ["sixtyfps-rendering-backend-gl/wayland"]
|
wayland = ["sixtyfps-rendering-backend-gl/wayland"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib", default-features = false }
|
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib", default-features = false }
|
||||||
sixtyfps-rendering-backend-gl = { version = "=0.1.6", path = "../gl", optional = true }
|
sixtyfps-rendering-backend-gl = { version = "=0.2.0", path = "../gl", optional = true }
|
||||||
sixtyfps-rendering-backend-qt = { version = "=0.1.6", path = "../qt", optional = true }
|
sixtyfps-rendering-backend-qt = { version = "=0.2.0", path = "../qt", optional = true }
|
||||||
cfg-if = "1"
|
cfg-if = "1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-gl"
|
name = "sixtyfps-rendering-backend-gl"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -23,8 +23,8 @@ svg = ["resvg", "usvg", "tiny-skia"]
|
||||||
default = ["svg"]
|
default = ["svg"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib" }
|
||||||
sixtyfps-common = { version = "=0.1.6", path = "../../common" }
|
sixtyfps-common = { version = "=0.2.0", path = "../../common" }
|
||||||
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.14", default-features = false, features = [ "png", "jpeg" ] }
|
image = { version = "0.23.14", default-features = false, features = [ "png", "jpeg" ] }
|
||||||
rgb = "0.8.27"
|
rgb = "0.8.27"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-mcu"
|
name = "sixtyfps-rendering-backend-mcu"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -27,8 +27,8 @@ snapshot_renderer = []
|
||||||
std = ["sixtyfps-corelib/std"]
|
std = ["sixtyfps-corelib/std"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib", default-features = false }
|
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib", default-features = false }
|
||||||
sixtyfps-common = { version = "=0.1.6", path = "../../common", default-features = false }
|
sixtyfps-common = { version = "=0.2.0", path = "../../common", default-features = false }
|
||||||
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
const-field-offset = { version = "0.1", path = "../../../helper_crates/const-field-offset" }
|
||||||
rgb = "0.8.27"
|
rgb = "0.8.27"
|
||||||
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }
|
vtable = { version = "0.1", path = "../../../helper_crates/vtable" }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-qt"
|
name = "sixtyfps-rendering-backend-qt"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -23,9 +23,9 @@ 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.1.6", path = "../../corelib_macros" }
|
sixtyfps-corelib-macros = { version = "=0.2.0", path = "../../corelib_macros" }
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib" }
|
||||||
sixtyfps-common = { version = "=0.1.6", path = "../../common" }
|
sixtyfps-common = { version = "=0.2.0", path = "../../common" }
|
||||||
euclid = "0.22.1"
|
euclid = "0.22.1"
|
||||||
pin-weak = "1"
|
pin-weak = "1"
|
||||||
once_cell = "1"
|
once_cell = "1"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-rendering-backend-testing"
|
name = "sixtyfps-rendering-backend-testing"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -16,5 +16,5 @@ publish = false
|
||||||
path = "lib.rs"
|
path = "lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../../corelib" }
|
sixtyfps-corelib = { version = "=0.2.0", path = "../../corelib" }
|
||||||
image = { version = "0.23.14", default-features = false, features = ["png"] }
|
image = { version = "0.23.14", default-features = false, features = ["png"] }
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "doctests"
|
name = "doctests"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-cpp"
|
name = "test-driver-cpp"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test_driver_lib"
|
name = "test_driver_lib"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-interpreter"
|
name = "test-driver-interpreter"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-nodejs"
|
name = "test-driver-nodejs"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "test-driver-rust"
|
name = "test-driver-rust"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-compiler"
|
name = "sixtyfps-compiler"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -17,7 +17,7 @@ name = "sixtyfps-compiler"
|
||||||
path = "main.rs"
|
path = "main.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../sixtyfps_compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../sixtyfps_compiler", features = ["display-diagnostics", "cpp", "rust"]}
|
||||||
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
|
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
|
||||||
spin_on = "0.1"
|
spin_on = "0.1"
|
||||||
proc-macro2 = "1.0.11"
|
proc-macro2 = "1.0.11"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "figma_import"
|
name = "figma_import"
|
||||||
version = "0.1.6"
|
version = "0.2.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"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-fmt"
|
name = "sixtyfps-fmt"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-lsp"
|
name = "sixtyfps-lsp"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -29,10 +29,10 @@ wayland = ["sixtyfps-interpreter/wayland"]
|
||||||
default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
|
default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-compilerlib = { version = "=0.1.6", path = "../../sixtyfps_compiler"}
|
sixtyfps-compilerlib = { version = "=0.2.0", path = "../../sixtyfps_compiler"}
|
||||||
sixtyfps-interpreter = { version = "=0.1.6", path = "../../sixtyfps_runtime/interpreter", default-features = false }
|
sixtyfps-interpreter = { version = "=0.2.0", path = "../../sixtyfps_runtime/interpreter", default-features = false }
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path = "../../sixtyfps_runtime/corelib"}
|
sixtyfps-corelib = { version = "=0.2.0", path = "../../sixtyfps_runtime/corelib"}
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
lsp-types = "0.91.0"
|
lsp-types = "0.91.0"
|
||||||
lsp-server = "0.5"
|
lsp-server = "0.5"
|
||||||
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 @@
|
||||||
{
|
{
|
||||||
"name": "sixtyfps-online-editor",
|
"name": "sixtyfps-online-editor",
|
||||||
"version": "0.1.6",
|
"version": "0.2.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "syntax_updater"
|
name = "syntax_updater"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "sixtyfps-viewer"
|
name = "sixtyfps-viewer"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
@ -21,9 +21,9 @@ wayland = ["sixtyfps-interpreter/wayland"]
|
||||||
default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
|
default = ["sixtyfps-backend-qt", "sixtyfps-backend-gl", "x11"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
sixtyfps-corelib = { version = "=0.1.6", path="../../sixtyfps_runtime/corelib" }
|
sixtyfps-corelib = { version = "=0.2.0", path="../../sixtyfps_runtime/corelib" }
|
||||||
sixtyfps-rendering-backend-default = { version = "=0.1.6", path="../../sixtyfps_runtime/rendering_backends/default" }
|
sixtyfps-rendering-backend-default = { version = "=0.2.0", path="../../sixtyfps_runtime/rendering_backends/default" }
|
||||||
sixtyfps-interpreter = { version = "=0.1.6", path = "../../sixtyfps_runtime/interpreter", default-features = false, features = ["display-diagnostics"] }
|
sixtyfps-interpreter = { version = "=0.2.0", path = "../../sixtyfps_runtime/interpreter", default-features = false, features = ["display-diagnostics"] }
|
||||||
vtable = { version = "0.1", path="../../helper_crates/vtable" }
|
vtable = { version = "0.1", path="../../helper_crates/vtable" }
|
||||||
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
|
clap = { version = "3.0.5", features=["derive", "wrap_help"] }
|
||||||
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.1.6",
|
"version": "0.2.0",
|
||||||
"publisher": "SixtyFPS",
|
"publisher": "SixtyFPS",
|
||||||
"icon": "extension-logo.png",
|
"icon": "extension-logo.png",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "xtask"
|
name = "xtask"
|
||||||
version = "0.1.6"
|
version = "0.2.0"
|
||||||
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
authors = ["SixtyFPS <info@sixtyfps.io>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
license = "(GPL-3.0-only OR LicenseRef-SixtyFPS-commercial)"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue