mirror of
https://github.com/fluencelabs/marine-rs-sdk-test
synced 2025-03-15 12:40:50 +00:00
0.6.6 & html_root_url
This commit is contained in:
parent
e75a36b1c5
commit
eefa673b4b
@ -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"
|
||||
|
@ -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,
|
||||
|
@ -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"
|
||||
|
@ -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,
|
||||
|
@ -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" }
|
||||
|
@ -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,
|
||||
|
@ -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,
|
||||
|
@ -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"
|
||||
|
@ -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,
|
||||
|
@ -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"]}
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user