mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2024-12-04 23:30:18 +00:00
bump to 0.1.10 version
This commit is contained in:
parent
ac00542974
commit
3ae49e9a37
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "fluence"
|
name = "fluence"
|
||||||
version = "0.1.9" # remember to update html_root_url
|
version = "0.1.10" # remember to update html_root_url
|
||||||
description = "Fluence backend SDK for developing backend applications for the Fluence network"
|
description = "Fluence backend SDK for developing backend applications for the Fluence network"
|
||||||
documentation = "https://docs.rs/fluence/"
|
documentation = "https://docs.rs/fluence/"
|
||||||
repository = "https://github.com/fluencelabs/rust-sdk"
|
repository = "https://github.com/fluencelabs/rust-sdk"
|
||||||
@ -18,8 +18,8 @@ all-features = true
|
|||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.9" }
|
fluence-sdk-macro = { path = "crates/macro", version = "=0.1.10" }
|
||||||
fluence-sdk-main = { path = "crates/main", version = "=0.1.9" }
|
fluence-sdk-main = { path = "crates/main", version = "=0.1.10" }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["export_allocator"]
|
default = ["export_allocator"]
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "fluence-sdk-macro"
|
name = "fluence-sdk-macro"
|
||||||
version = "0.1.9" # remember to update html_root_url
|
version = "0.1.10" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Definition of `#[invoke_handler]` attribute"
|
description = "Definition of `#[invoke_handler]` attribute"
|
||||||
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
||||||
@ -21,4 +21,4 @@ proc-macro = true
|
|||||||
syn = { version = '0.15.44', features = ['full'] }
|
syn = { version = '0.15.44', features = ['full'] }
|
||||||
quote = "0.6.13"
|
quote = "0.6.13"
|
||||||
proc-macro2 = "0.4"
|
proc-macro2 = "0.4"
|
||||||
fluence-sdk-main = { path = "../main", version = "=0.1.9" }
|
fluence-sdk-main = { path = "../main", version = "=0.1.10" }
|
||||||
|
@ -75,7 +75,7 @@
|
|||||||
//!
|
//!
|
||||||
//! Please find more examples [here](https://github.com/fluencelabs/tutorials).
|
//! Please find more examples [here](https://github.com/fluencelabs/tutorials).
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.1.9")]
|
#![doc(html_root_url = "https://docs.rs/fluence-sdk-macro/0.1.10")]
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
nonstandard_style,
|
nonstandard_style,
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "fluence-sdk-main"
|
name = "fluence-sdk-main"
|
||||||
version = "0.1.9" # remember to update html_root_url
|
version = "0.1.10" # remember to update html_root_url
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Rust SDK for writing applications for Fluence"
|
description = "Rust SDK for writing applications for Fluence"
|
||||||
documentation = "https://docs.rs/fluence/fluence-sdk-macro"
|
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`
|
//! `export_allocator` feature), `logger` (is turned on by the `wasm_logger` feature), and `memory`
|
||||||
//! modules.
|
//! modules.
|
||||||
|
|
||||||
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.9")]
|
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.1.10")]
|
||||||
#![feature(allocator_api)]
|
#![feature(allocator_api)]
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
//! By default this crate turns on export-allocator feature of the `main` crate, to disable it
|
//! By default this crate turns on export-allocator feature of the `main` crate, to disable it
|
||||||
//! please import this crate with `default-features = false`.
|
//! please import this crate with `default-features = false`.
|
||||||
//!
|
//!
|
||||||
#![doc(html_root_url = "https://docs.rs/fluence/0.1.9")]
|
#![doc(html_root_url = "https://docs.rs/fluence/0.1.10")]
|
||||||
#![feature(allocator_api)]
|
#![feature(allocator_api)]
|
||||||
#![deny(
|
#![deny(
|
||||||
dead_code,
|
dead_code,
|
||||||
|
Loading…
Reference in New Issue
Block a user