mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-04 15:20:18 +00:00
bump to 0.1.11
This commit is contained in:
parent
b89a9878d2
commit
7100cb9475
@ -12,9 +12,9 @@ jobs:
|
||||
keys:
|
||||
- backendsdk01-{{ checksum "Cargo.toml" }}
|
||||
- run: | #TODO: enable 'stable' and 'beta' once `allocator_api` becomes stable
|
||||
rustup toolchain install nightly-2019-09-23
|
||||
rustup default nightly-2019-09-23
|
||||
rustup override set nightly-2019-09-23
|
||||
rustup toolchain install nightly-2020-04-20
|
||||
rustup default nightly-2020-04-20
|
||||
rustup override set nightly-2020-04-20
|
||||
rustup target add wasm32-unknown-unknown
|
||||
rustup component add rustfmt
|
||||
rustup component add clippy
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "fluence"
|
||||
version = "0.1.10" # remember to update html_root_url
|
||||
version = "0.1.11" # 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"
|
||||
@ -18,8 +18,8 @@ all-features = true
|
||||
path = "src/lib.rs"
|
||||
|
||||
[dependencies]
|
||||
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.10" }
|
||||
fluence-sdk-main = { path = "crates/main", version = "=0.1.10" }
|
||||
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.11" }
|
||||
fluence-sdk-main = { path = "crates/main", version = "=0.1.11" }
|
||||
|
||||
[features]
|
||||
default = ["export_allocator"]
|
||||
@ -29,6 +29,9 @@ wasm_logger = ["fluence-sdk-main/wasm_logger"]
|
||||
# Turn on a compilation for the module that contains the standard implementation of allocate/deallocate functions.
|
||||
export_allocator = ["fluence-sdk-main/export_allocator"]
|
||||
|
||||
# Provides additional imports to allow this module work as a side module
|
||||
side_module = ["fluence-sdk-main/side_module"]
|
||||
|
||||
[workspace]
|
||||
members = [
|
||||
"crates/main",
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "fluence-sdk-macro"
|
||||
version = "0.1.10" # remember to update html_root_url
|
||||
version = "0.1.11" # remember to update html_root_url
|
||||
edition = "2018"
|
||||
description = "Definition of `#[invoke_handler]` attribute"
|
||||
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
||||
@ -21,4 +21,4 @@ proc-macro = true
|
||||
syn = { version = '0.15.44', features = ['full'] }
|
||||
quote = "0.6.13"
|
||||
proc-macro2 = "0.4"
|
||||
fluence-sdk-main = { path = "../main", version = "=0.1.10" }
|
||||
fluence-sdk-main = { path = "../main", version = "=0.1.11" }
|
||||
|
@ -75,7 +75,7 @@
|
||||
//!
|
||||
//! Please find more examples [here](https://github.com/fluencelabs/tutorials).
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.1.10")]
|
||||
#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.1.11")]
|
||||
#![deny(
|
||||
dead_code,
|
||||
nonstandard_style,
|
||||
|
@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "fluence-sdk-main"
|
||||
version = "0.1.10" # remember to update html_root_url
|
||||
version = "0.1.11" # remember to update html_root_url
|
||||
edition = "2018"
|
||||
description = "Rust SDK for writing applications for Fluence"
|
||||
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
||||
|
@ -18,7 +18,7 @@
|
||||
//! `export_allocator` feature), `logger` (is turned on by the `wasm_logger` feature), and `memory`
|
||||
//! modules.
|
||||
|
||||
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.10")]
|
||||
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.11")]
|
||||
#![feature(allocator_api)]
|
||||
#![deny(
|
||||
dead_code,
|
||||
|
@ -22,7 +22,7 @@
|
||||
//! By default this crate turns on export-allocator feature of the `main` crate, to disable it
|
||||
//! please import this crate with `default-features = false`.
|
||||
//!
|
||||
#![doc(html_root_url = "https://docs.rs/fluence/0.1.10")]
|
||||
#![doc(html_root_url = "https://docs.rs/fluence/0.1.11")]
|
||||
#![feature(allocator_api)]
|
||||
#![deny(
|
||||
dead_code,
|
||||
|
Loading…
Reference in New Issue
Block a user