diff --git a/Cargo.lock b/Cargo.lock index cfee4cf..0d24c05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -790,9 +790,9 @@ dependencies = [ [[package]] name = "marine-macro" -version = "0.6.9" +version = "0.6.10" dependencies = [ - "marine-macro-impl 0.6.9", + "marine-macro-impl 0.6.10", ] [[package]] @@ -811,7 +811,7 @@ dependencies = [ [[package]] name = "marine-macro-impl" -version = "0.6.9" +version = "0.6.10" dependencies = [ "pretty_assertions", "proc-macro2", @@ -840,29 +840,29 @@ dependencies = [ [[package]] name = "marine-rs-sdk" -version = "0.6.9" +version = "0.6.10" dependencies = [ - "marine-macro 0.6.9", + "marine-macro 0.6.10", "marine-rs-sdk-main", - "marine-timestamp-macro 0.6.9", + "marine-timestamp-macro 0.6.10", "serde", "trybuild", ] [[package]] name = "marine-rs-sdk-main" -version = "0.6.9" +version = "0.6.10" dependencies = [ "lazy_static", "log", - "marine-macro 0.6.9", + "marine-macro 0.6.10", "serde", "simple_logger", ] [[package]] name = "marine-rs-sdk-test" -version = "0.1.9" +version = "0.1.10" dependencies = [ "fluence-app-service", "marine-test-macro", @@ -902,7 +902,7 @@ dependencies = [ [[package]] name = "marine-test-macro" -version = "0.1.9" +version = "0.1.10" dependencies = [ "marine-test-macro-impl", "proc-macro-error", @@ -913,7 +913,7 @@ dependencies = [ [[package]] name = "marine-test-macro-impl" -version = "0.1.9" +version = "0.1.10" dependencies = [ "darling", "fluence-app-service", @@ -937,7 +937,7 @@ dependencies = [ [[package]] name = "marine-timestamp-macro" -version = "0.6.9" +version = "0.6.10" dependencies = [ "chrono", "quote", diff --git a/crates/main/Cargo.toml b/crates/main/Cargo.toml index c3e4859..0f342f1 100644 --- a/crates/main/Cargo.toml +++ b/crates/main/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-rs-sdk-main" -version = "0.6.9" # remember to update html_root_url +version = "0.6.10" # remember to update html_root_url edition = "2018" description = "Contains logger, allocators and several other modules for marine-rs-sdk" documentation = "https://docs.rs/marine-rs-sdk-main" @@ -19,7 +19,7 @@ crate-type = ["rlib"] doctest = false [dependencies] -marine-macro = { path = "../marine-macro", version = "=0.6.9" } +marine-macro = { path = "../marine-macro", version = "=0.6.10" } log = { version = "0.4.8", features = ["std"] } serde = "=1.0.118" diff --git a/crates/main/src/lib.rs b/crates/main/src/lib.rs index 48ad585..39e34bf 100644 --- a/crates/main/src/lib.rs +++ b/crates/main/src/lib.rs @@ -19,7 +19,7 @@ #![allow(clippy::missing_safety_doc)] #![allow(clippy::needless_doctest_main)] -#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.6.9")] +#![doc(html_root_url = "https://docs.rs/marine-rs-sdk-main/0.6.10")] #![deny( dead_code, nonstandard_style, diff --git a/crates/marine-macro-impl/Cargo.toml b/crates/marine-macro-impl/Cargo.toml index b1ef9b2..51d4b8c 100644 --- a/crates/marine-macro-impl/Cargo.toml +++ b/crates/marine-macro-impl/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "marine-macro-impl" -version = "0.6.9" # remember to update html_root_url +version = "0.6.10" # remember to update html_root_url edition = "2018" description = "Implementation of the `#[marine]` macro" documentation = "https://docs.rs/fluence/marine-macro-impl" repository = "https://github.com/fluencelabs/marine-rs-sdk/tree/master/crates/marine-macro-impl" authors = ["Fluence Labs"] -keywords = ["fluence", "marine", "sdk", "webassembly", "it", "interface-types"] +keywords = ["fluence", "marine", "sdk", "webassembly", "interface-types"] categories = ["api-bindings", "wasm"] license = "Apache-2.0" diff --git a/crates/marine-macro-impl/src/lib.rs b/crates/marine-macro-impl/src/lib.rs index ab6a0fa..271303d 100644 --- a/crates/marine-macro-impl/src/lib.rs +++ b/crates/marine-macro-impl/src/lib.rs @@ -14,7 +14,7 @@ * limitations under the License. */ -#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.6.9")] +#![doc(html_root_url = "https://docs.rs/marine-macro-impl/0.6.10")] #![deny( dead_code, nonstandard_style, diff --git a/crates/marine-macro/Cargo.toml b/crates/marine-macro/Cargo.toml index c5ef13a..d09409c 100644 --- a/crates/marine-macro/Cargo.toml +++ b/crates/marine-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-macro" -version = "0.6.9" # remember to update html_root_url +version = "0.6.10" # 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.9" } +marine-macro-impl = { path = "../marine-macro-impl", version = "=0.6.10" } diff --git a/crates/marine-macro/src/lib.rs b/crates/marine-macro/src/lib.rs index 367b5da..a8b212b 100644 --- a/crates/marine-macro/src/lib.rs +++ b/crates/marine-macro/src/lib.rs @@ -50,7 +50,7 @@ //! //! ``` -#![doc(html_root_url = "https://docs.rs/marine-macro/0.6.9")] +#![doc(html_root_url = "https://docs.rs/marine-macro/0.6.10")] #![deny( dead_code, nonstandard_style, diff --git a/crates/marine-test-macro-impl/Cargo.toml b/crates/marine-test-macro-impl/Cargo.toml index 053808d..3e3d502 100644 --- a/crates/marine-test-macro-impl/Cargo.toml +++ b/crates/marine-test-macro-impl/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-test-macro-impl" -version = "0.1.9" # remember to update html_root_url +version = "0.1.10" # remember to update html_root_url edition = "2018" description = "Implementation of the `#[marine_test]` macro" documentation = "https://docs.rs/fluence/marine-test-macro-impl" diff --git a/crates/marine-test-macro/Cargo.toml b/crates/marine-test-macro/Cargo.toml index e61cbd2..aa093e3 100644 --- a/crates/marine-test-macro/Cargo.toml +++ b/crates/marine-test-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-test-macro" -version = "0.1.9" # remember to update html_root_url +version = "0.1.10" # remember to update html_root_url edition = "2018" description = "Definition of the `#[marine_test]` macro" documentation = "https://docs.rs/fluence/marine-test-macro" @@ -18,7 +18,7 @@ proc-macro = true doctest = false [dependencies] -marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.1.9" } +marine-test-macro-impl = { path = "../marine-test-macro-impl", version = "=0.1.10" } quote = "1.0.9" proc-macro2 = "1.0.24" diff --git a/crates/timestamp-macro/Cargo.toml b/crates/timestamp-macro/Cargo.toml index 658c958..6d578bd 100644 --- a/crates/timestamp-macro/Cargo.toml +++ b/crates/timestamp-macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-timestamp-macro" -version = "0.6.9" # remember to update html_root_url +version = "0.6.10" # remember to update html_root_url edition = "2018" description = "Definition of the `#[build_timestamp]` macro" documentation = "https://docs.rs/fluence/marine-timestamp-macro" diff --git a/sdk-test/Cargo.toml b/sdk-test/Cargo.toml index 15c10c0..d8b5dd4 100644 --- a/sdk-test/Cargo.toml +++ b/sdk-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-rs-sdk-test" -version = "0.1.9" # remember to update html_root_url +version = "0.1.10" # remember to update html_root_url description = "Backend SDK that allows testing modules for the Marine runtime" documentation = "https://docs.rs/marine-rs-sdk-test" repository = "https://github.com/fluencelabs/marine-rs-sdk/tree/master/fluence-test" @@ -18,7 +18,7 @@ path = "src/lib.rs" doctest = false [dependencies] -marine-test-macro = { path = "../crates/marine-test-macro", version = "=0.1.9" } +marine-test-macro = { path = "../crates/marine-test-macro", version = "=0.1.10" } fluence-app-service = { version = "0.7.0", features = ["raw-module-api"] } serde = { version = "1.0.118", features = ["derive"] } diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index 4f36c6a..f9c6b3b 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "marine-rs-sdk" -version = "0.6.9" # remember to update html_root_url +version = "0.6.10" # 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/marine-rs-sdk" @@ -18,9 +18,9 @@ path = "src/lib.rs" doctest = false [dependencies] -marine-macro = { path = "../crates/marine-macro", version = "=0.6.9" } -marine-rs-sdk-main = { path = "../crates/main", version = "=0.6.9" } -marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.9" } +marine-macro = { path = "../crates/marine-macro", version = "=0.6.10" } +marine-rs-sdk-main = { path = "../crates/main", version = "=0.6.10" } +marine-timestamp-macro = { path = "../crates/timestamp-macro", version = "=0.6.10" } serde = { version = "1.0.118", features = ["derive"]} diff --git a/sdk/src/lib.rs b/sdk/src/lib.rs index 8a44e93..7404a4c 100644 --- a/sdk/src/lib.rs +++ b/sdk/src/lib.rs @@ -55,7 +55,7 @@ //! pub fn curl_get(url: String) -> String; //! } //! ``` -#![doc(html_root_url = "https://docs.rs/sdk/0.6.9")] +#![doc(html_root_url = "https://docs.rs/sdk/0.6.10")] #![deny( dead_code, nonstandard_style,