Bump versions to 0.2.0 (#63)

This commit is contained in:
folex 2021-02-12 14:24:36 +03:00 committed by GitHub
parent 12795cc0cb
commit cdfed97fce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
19 changed files with 41 additions and 27 deletions

16
Cargo.lock generated
View File

@ -41,7 +41,7 @@ checksum = "afddf7f520a80dbf76e6f50a35bca42a2331ef227a28b3b6dc5c2e2338d114b1"
[[package]]
name = "aquamarine-vm"
version = "0.1.30"
version = "0.2.0"
dependencies = [
"fluence-faas",
"log",
@ -648,7 +648,7 @@ dependencies = [
[[package]]
name = "fce"
version = "0.1.30"
version = "0.2.0"
dependencies = [
"boolinator",
"bytes 0.5.6",
@ -687,7 +687,7 @@ version = "0.1.29"
[[package]]
name = "fce-wit-generator"
version = "0.1.30"
version = "0.2.0"
dependencies = [
"fce-wit-parser",
"fluence-sdk-wit 0.2.18 (registry+https://github.com/rust-lang/crates.io-index)",
@ -708,7 +708,7 @@ dependencies = [
[[package]]
name = "fce-wit-parser"
version = "0.1.29"
version = "0.2.0"
dependencies = [
"anyhow",
"fce-wit-interfaces",
@ -720,7 +720,7 @@ dependencies = [
[[package]]
name = "fcli"
version = "0.1.31"
version = "0.2.0"
dependencies = [
"anyhow",
"clap",
@ -752,7 +752,7 @@ dependencies = [
[[package]]
name = "fluence-app-service"
version = "0.1.30"
version = "0.2.0"
dependencies = [
"fluence-faas",
"log",
@ -766,7 +766,7 @@ dependencies = [
[[package]]
name = "fluence-faas"
version = "0.1.30"
version = "0.2.0"
dependencies = [
"cmd_lib",
"env_logger 0.7.1",
@ -899,7 +899,7 @@ dependencies = [
[[package]]
name = "frepl"
version = "0.1.33"
version = "0.2.0"
dependencies = [
"anyhow",
"clap",

View File

@ -1,7 +1,7 @@
[package]
name = "aquamarine-vm"
description = "Fluence Aquamarine VM"
version = "0.1.30"
version = "0.2.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"
@ -11,7 +11,7 @@ name = "aquamarine_vm"
path = "src/lib.rs"
[dependencies]
fluence-faas = { path = "../fluence-faas", version = "0.1.30" }
fluence-faas = { path = "../fluence-faas", version = "0.2.0" }
stepper-interface = "0.1.2"
maplit = "1.0.2"

View File

@ -1,7 +1,7 @@
[package]
name = "fce-wit-generator"
description = "Fluence FCE interface type helper crate"
version = "0.1.30"
version = "0.2.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
@ -11,7 +11,7 @@ name = "fce_wit_generator"
path = "src/lib.rs"
[dependencies]
fce-wit-parser = { path = "../wit-parser", version = "0.1.29"}
fce-wit-parser = { path = "../wit-parser", version = "0.2.0"}
fluence-sdk-wit = "=0.2.18"
walrus = "0.17.0"

View File

@ -1,7 +1,7 @@
[package]
name = "fce-wit-parser"
description = "Fluence FCE interface type helper crate"
version = "0.1.29"
version = "0.2.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"

View File

@ -1,7 +1,7 @@
[package]
name = "fce"
description = "Fluence Compute Engine"
version = "0.1.30"
version = "0.2.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
@ -12,8 +12,8 @@ path = "src/lib.rs"
[dependencies]
fce-wit-interfaces = { path = "../crates/wit-interfaces", version = "0.1.29" }
fce-wit-parser = { path = "../crates/wit-parser", version = "0.1.29" }
fce-wit-generator = { path = "../crates/wit-generator", version = "0.1.30" }
fce-wit-parser = { path = "../crates/wit-parser", version = "0.2.0" }
fce-wit-generator = { path = "../crates/wit-generator", version = "0.2.0" }
fce-utils = { path = "../crates/utils", version = "0.1.29" }
wasmer-runtime = { package = "wasmer-runtime-fl", version = "0.17.0" }

View File

@ -14,6 +14,7 @@
* limitations under the License.
*/
#[cfg(target_arch = "wasm32")]
use fluence::fce;
pub fn main() {}

View File

@ -14,6 +14,8 @@
* limitations under the License.
*/
#![allow(improper_ctypes)]
mod path;
use crate::path::to_full_path;

View File

@ -14,6 +14,8 @@
* limitations under the License.
*/
#![allow(improper_ctypes)]
use fluence::fce;
use fluence::WasmLoggerBuilder;

View File

@ -14,6 +14,8 @@
* limitations under the License.
*/
#![allow(improper_ctypes)]
use fluence::fce;
use test_record::TestRecord;

View File

@ -14,6 +14,8 @@
* limitations under the License.
*/
#![allow(improper_ctypes)]
use fluence::fce;
use fluence::WasmLoggerBuilder;

View File

@ -13,6 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#![allow(improper_ctypes)]
use fluence::fce;
use fluence::WasmLoggerBuilder;
@ -24,7 +25,7 @@ pub fn main() {
/// Combining of modules: `curl` and `local_storage`.
/// Calls `curl` and stores returned result into a file.
#[fce]
fn get_n_save(url: String, file_name: String) -> String {
pub fn get_n_save(url: String, file_name: String) -> String {
let result = unsafe { download(url) };
unsafe { file_put(file_name, result.into_bytes()) };

View File

@ -1,13 +1,13 @@
[package]
name = "fluence-app-service"
description = "Fluence Application Service"
version = "0.1.30"
version = "0.2.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
fluence-faas = { path = "../fluence-faas", version = "0.1.30" }
fluence-faas = { path = "../fluence-faas", version = "0.2.0" }
maplit = "1.0.2"
log = "0.4.8"

View File

@ -1,13 +1,13 @@
[package]
name = "fluence-faas"
description = "Fluence FaaS"
version = "0.1.30"
version = "0.2.0"
authors = ["Fluence Labs"]
license = "Apache-2.0"
edition = "2018"
[dependencies]
fce = { path = "../engine", version = "0.1.30" }
fce = { path = "../engine", version = "0.2.0" }
fce-utils = { path = "../crates/utils", version = "0.1.29" }
fluence-sdk-main = { version = "=0.2.18", features = ["logger"] }

View File

@ -14,6 +14,8 @@
* limitations under the License.
*/
#![allow(improper_ctypes)]
use fluence::fce;
pub fn main() {}

View File

@ -14,6 +14,8 @@
* limitations under the License.
*/
#![allow(improper_ctypes)]
use fluence::fce;
pub fn main() {}

View File

@ -38,7 +38,7 @@ pub struct TestRecord2 {
fn main() {}
#[fce]
fn test_record(mut test_record: TestRecord2) -> TestRecord2 {
pub fn test_record(mut test_record: TestRecord2) -> TestRecord2 {
test_record.test_record_0 = TestRecord0 { field_0: 1 };
test_record

View File

@ -1,7 +1,7 @@
[package]
name = "fcli"
description = "Fluence FCE command line tool"
version = "0.1.31"
version = "0.2.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/fce/tools/cli"
license = "Apache-2.0"
@ -12,8 +12,8 @@ name = "fce"
path = "src/main.rs"
[dependencies]
fce-wit-generator = { path = "../../crates/wit-generator", version = "0.1.30" }
fce-wit-parser = { path = "../../crates/wit-parser", version = "0.1.29" }
fce-wit-generator = { path = "../../crates/wit-generator", version = "0.2.0" }
fce-wit-parser = { path = "../../crates/wit-parser", version = "0.2.0" }
anyhow = "1.0.31"
clap = "2.33.1"

View File

@ -1,7 +1,7 @@
[package]
name = "frepl"
description = "Fluence FCE REPL intended for testing purposes"
version = "0.1.33"
version = "0.2.0"
authors = ["Fluence Labs"]
repository = "https://github.com/fluencelabs/fce/tools/repl"
license = "Apache-2.0"
@ -12,7 +12,7 @@ name = "fce-repl"
path = "src/main.rs"
[dependencies]
fluence-app-service = { path = "../../fluence-app-service", version = "0.1.30", features = ["raw-module-api"] }
fluence-app-service = { path = "../../fluence-app-service", version = "0.2.0", features = ["raw-module-api"] }
fluence-sdk-main = { version = "=0.2.18", features = ["logger"] }
anyhow = "1.0.31"