Skip to content

Commit

Permalink
bump crate versions (#144)
Browse files Browse the repository at this point in the history
* bump minor crate versions

* fix marine-web build

* sort deps
  • Loading branch information
ValeryAntopol authored Mar 25, 2022
1 parent e37e475 commit 5ab0f37
Show file tree
Hide file tree
Showing 13 changed files with 80 additions and 95 deletions.
96 changes: 41 additions & 55 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/it-generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-it-generator"
description = "Fluence Marine interface types generator"
version = "0.6.0"
version = "0.7.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -11,7 +11,7 @@ name = "marine_it_generator"
path = "src/lib.rs"

[dependencies]
marine-it-parser = { path = "../it-parser", version = "0.7.0"}
marine-it-parser = { path = "../it-parser", version = "0.8.0"}
marine-macro-impl = "0.6.10"

wasmer-it = { package = "wasmer-interface-types-fl", version = "0.22.0" }
Expand Down
2 changes: 1 addition & 1 deletion crates/it-interfaces/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-it-interfaces"
description = "Fluence Marine interface types helper crate"
version = "0.5.0"
version = "0.6.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
Expand Down
2 changes: 1 addition & 1 deletion crates/it-json-serde/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "it-json-serde"
description = "Fluence Marine interface-types serde tools"
version = "0.1.0"
version = "0.2.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
Expand Down
6 changes: 3 additions & 3 deletions crates/it-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-it-parser"
description = "Fluence Marine interface types parser"
version = "0.7.0"
version = "0.8.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -11,8 +11,8 @@ name = "marine_it_parser"
path = "src/lib.rs"

[dependencies]
marine-it-interfaces = { path = "../it-interfaces", version = "0.5.0" }
marine-module-interface = { path = "../module-interface", version = "0.2.0" }
marine-it-interfaces = { path = "../it-interfaces", version = "0.6.0" }
marine-module-interface = { path = "../module-interface", version = "0.3.0" }

anyhow = "1.0.31"
walrus = "0.18.0"
Expand Down
4 changes: 2 additions & 2 deletions crates/module-interface/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "marine-module-interface"
description = "Fluence Marine module interface"
version = "0.2.0"
version = "0.3.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
Expand All @@ -11,7 +11,7 @@ name = "marine_module_interface"
path = "src/lib.rs"

[dependencies]
marine-it-interfaces = { path = "../it-interfaces", version = "0.5.0" }
marine-it-interfaces = { path = "../it-interfaces", version = "0.6.0" }

anyhow = "1.0.31"
walrus = "0.18.0"
Expand Down
4 changes: 2 additions & 2 deletions fluence-app-service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.14.1"
version = "0.15.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"

[dependencies]
fluence-faas = { path = "../fluence-faas", version = "0.13.1" }
fluence-faas = { path = "../fluence-faas", version = "0.14.0" }
marine-min-it-version = { path = "../crates/min-it-version", version = "0.1.0" }

maplit = "1.0.2"
Expand Down
8 changes: 4 additions & 4 deletions fluence-faas/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "fluence-faas"
description = "Fluence FaaS"
version = "0.13.1"
version = "0.14.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"

[dependencies]
marine-runtime = { path = "../runtime", version = "0.11.0" }
marine-module-interface = { path = "../crates/module-interface", version = "0.2.0" }
marine-runtime = { path = "../runtime", version = "0.12.0" }
marine-module-interface = { path = "../crates/module-interface", version = "0.3.0" }
marine-utils = { path = "../crates/utils", version = "0.4.0" }
marine-rs-sdk-main = { version = "0.6.15", features = ["logger"] }
marine-rs-sdk = { version = "0.6.15", features = ["logger"] }
it-json-serde = { path = "../crates/it-json-serde", version = "0.1.0" }
it-json-serde = { path = "../crates/it-json-serde", version = "0.2.0" }

wasmer-runtime = { package = "wasmer-runtime-fl", version = "=0.17.1" }
# dynamicfunc-fat-closures allows using state inside DynamicFunc
Expand Down
Loading

0 comments on commit 5ab0f37

Please sign in to comment.