reexport __fce_generated_section__

This commit is contained in:
vms 2021-05-12 16:09:15 +03:00
parent cf01bffdf2
commit f89113f3e3
5 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "fluence-sdk-main"
version = "0.6.3" # remember to update html_root_url
version = "0.6.4" # remember to update html_root_url
edition = "2018"
description = "Rust SDK for applications for the Fluence network"
documentation = "https://docs.rs/fluence/marine-macro"
@ -19,7 +19,7 @@ crate-type = ["rlib"]
doctest = false
[dependencies]
marine-macro = { path = "../marine-macro", version = "=0.6.3" }
marine-macro = { path = "../marine-macro", version = "=0.6.4" }
log = { version = "0.4.8", features = ["std"] }
serde = "=1.0.118"

View File

@ -1,6 +1,6 @@
[package]
name = "marine-macro-impl"
version = "0.6.3" # remember to update html_root_url
version = "0.6.4" # remember to update html_root_url
edition = "2018"
description = "Implementation of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro"

View File

@ -46,3 +46,5 @@ pub use token_stream_generator::GENERATED_WRAPPER_FUNC_PREFIX;
pub use token_stream_generator::GENERATED_SECTION_PREFIX;
pub use token_stream_generator::GENERATED_GLOBAL_PREFIX;
pub use wasm_type::RustType;
pub const GENERATED_SECTION_PREFIX_FCE: &str = "__fce_generated_section__";

View File

@ -1,6 +1,6 @@
[package]
name = "marine-macro"
version = "0.6.3" # remember to update html_root_url
version = "0.6.4" # remember to update html_root_url
edition = "2018"
description = "Definition of the `#[marine]` macro"
documentation = "https://docs.rs/fluence/marine-macro"
@ -18,4 +18,4 @@ proc-macro = true
doctest = false
[dependencies]
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.3" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.4" }

View File

@ -1,6 +1,6 @@
[package]
name = "fluence"
version = "0.6.4" # remember to update html_root_url
version = "0.6.5" # remember to update html_root_url
description = "Fluence backend SDK for developing backend applications for the Fluence network"
documentation = "https://docs.rs/fluence/"
repository = "https://github.com/fluencelabs/rust-sdk"
@ -19,8 +19,8 @@ path = "src/lib.rs"
doctest = false
[dependencies]
marine-macro = { path = "../crates/marine-macro", version = "=0.6.3" }
fluence-sdk-main = { path = "../crates/main", version = "=0.6.3" }
marine-macro = { path = "../crates/marine-macro", version = "=0.6.4" }
fluence-sdk-main = { path = "../crates/main", version = "=0.6.4" }
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.2" }
serde = { version = "1.0.118", features = ["derive"]}