Rename sixtyfps-rs-macro to sixtyfps-macros

This commit is contained in:
Olivier Goffart 2020-10-13 11:10:26 +02:00
parent ba80d6f515
commit a650f29abe
5 changed files with 4 additions and 4 deletions

View file

@ -9,7 +9,7 @@ members = [
'sixtyfps_compiler', 'sixtyfps_compiler',
'sixtyfps_compiler/parser_test_macro', 'sixtyfps_compiler/parser_test_macro',
'api/sixtyfps-rs', 'api/sixtyfps-rs',
'api/sixtyfps-rs/sixtyfps-rs-macro', 'api/sixtyfps-rs/sixtyfps-macros',
'api/sixtyfps-rs/sixtyfps-build', 'api/sixtyfps-rs/sixtyfps-build',
'api/sixtyfps-node/native', 'api/sixtyfps-node/native',
'api/sixtyfps-wasm-interpreter', 'api/sixtyfps-wasm-interpreter',

View file

@ -17,7 +17,7 @@ wayland = ["sixtyfps-rendering-backend-default/wayland"]
[dependencies] [dependencies]
once_cell = "1.4" once_cell = "1.4"
sixtyfps-rs-macro= { version = "=0.0.1", path = "sixtyfps-rs-macro" } sixtyfps-macros = { version = "=0.0.1", 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", path = "../../helper_crates/vtable" } vtable = { version = "0.1", path = "../../helper_crates/vtable" }
sixtyfps-corelib = { version = "=0.0.1", path="../../sixtyfps_runtime/corelib" } sixtyfps-corelib = { version = "=0.0.1", path="../../sixtyfps_runtime/corelib" }

View file

@ -108,7 +108,7 @@ The follow table summarizes the entire mapping:
#![warn(missing_docs)] #![warn(missing_docs)]
#![deny(unsafe_code)] #![deny(unsafe_code)]
pub use sixtyfps_rs_macro::sixtyfps; pub use sixtyfps_macros::sixtyfps;
pub use sixtyfps_corelib::model::{ pub use sixtyfps_corelib::model::{
Model, ModelHandle, ModelNotify, ModelPeer, StandardListViewItem, VecModel, Model, ModelHandle, ModelNotify, ModelPeer, StandardListViewItem, VecModel,

View file

@ -1,5 +1,5 @@
[package] [package]
name = "sixtyfps-rs-macro" name = "sixtyfps-macros"
version = "0.0.1" version = "0.0.1"
authors = ["SixtyFPS <info@sixtyfps.io>"] authors = ["SixtyFPS <info@sixtyfps.io>"]
edition = "2018" edition = "2018"