0.6.6 & html_root_url

This commit is contained in:
folex 2021-05-14 16:14:01 +03:00
parent e75a36b1c5
commit eefa673b4b
11 changed files with 16 additions and 16 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "fluence-sdk-main"
version = "0.6.5" # remember to update html_root_url
version = "0.6.6" # 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.5" }
marine-macro = { path = "../marine-macro", version = "=0.6.6" }
log = { version = "0.4.8", features = ["std"] }
serde = "=1.0.118"

View File

@ -19,7 +19,7 @@
#![allow(clippy::missing_safety_doc)]
#![allow(clippy::needless_doctest_main)]
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.5.0")]
#![doc(html_root_url = "https://docs.rs/fluence-sdk-main/0.6.6")]
#![deny(
dead_code,
nonstandard_style,

View File

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

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.6.2")]
#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.6.6")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "marine-macro"
version = "0.6.5" # remember to update html_root_url
version = "0.6.6" # 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.5" }
marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.6" }

View File

@ -50,7 +50,7 @@
//!
//! ```
#![doc(html_root_url = "https://docs.rs/marine-macro/0.5.0")]
#![doc(html_root_url = "https://docs.rs/marine-macro/0.6.6")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#![doc(html_root_url = "https://docs.rs/fluence-test-macro/0.1.4")]
#![doc(html_root_url = "https://docs.rs/fluence-test-macro/0.1.7")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "marine-timestamp-macro"
version = "0.6.5" # remember to update html_root_url
version = "0.6.6" # remember to update html_root_url
edition = "2018"
description = "Definition of the `#[build_timestamp]` macro"
repository = "https://github.com/fluencelabs/rust-sdk/crates/timestamp-macro"

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#![doc(html_root_url = "https://docs.rs/fluence-test/0.1.5")]
#![doc(html_root_url = "https://docs.rs/fluence-test/0.1.7")]
#![deny(
dead_code,
nonstandard_style,

View File

@ -1,6 +1,6 @@
[package]
name = "fluence"
version = "0.6.5" # remember to update html_root_url
version = "0.6.6" # 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,9 +19,9 @@ path = "src/lib.rs"
doctest = false
[dependencies]
marine-macro = { path = "../crates/marine-macro", version = "=0.6.5" }
fluence-sdk-main = { path = "../crates/main", version = "=0.6.5" }
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.5" }
marine-macro = { path = "../crates/marine-macro", version = "=0.6.6" }
fluence-sdk-main = { path = "../crates/main", version = "=0.6.6" }
marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.6" }
serde = { version = "1.0.118", features = ["derive"]}

View File

@ -55,7 +55,7 @@
//! pub fn curl_get(url: String) -> String;
//! }
//! ```
#![doc(html_root_url = "https://docs.rs/fluence/0.5.0")]
#![doc(html_root_url = "https://docs.rs/fluence/0.6.6")]
#![deny(
dead_code,
nonstandard_style,