Bump versions, add description for data-store (#148)

This commit is contained in:
Mike Voronov 2021-10-04 18:54:07 +03:00 committed by GitHub
parent 4a4fc0889b
commit 37ed77cb81
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 9 deletions

12
Cargo.lock generated
View File

@ -53,7 +53,7 @@ dependencies = [
[[package]]
name = "air-interpreter-data"
version = "0.1.1"
version = "0.2.0"
dependencies = [
"once_cell",
"semver 1.0.4",
@ -63,7 +63,7 @@ dependencies = [
[[package]]
name = "air-interpreter-interface"
version = "0.6.1"
version = "0.7.0"
dependencies = [
"fluence-it-types",
"marine-rs-sdk",
@ -1818,9 +1818,9 @@ checksum = "533494a8f9b724d33625ab53c6c4800f7cc445895924a8ef649222dcb76e938b"
[[package]]
name = "smallvec"
version = "1.6.1"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe0f37c9e8f3c5a4a66ad655a93c74daac4ad00c441533bf5c6e7990bb42604e"
checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
[[package]]
name = "static_assertions"
@ -1866,9 +1866,9 @@ checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]]
name = "syn"
version = "1.0.77"
version = "1.0.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5239bc68e0fef57495900cfea4e8dc75596d9a319d7e16b1e0a440d24e6fe0a0"
checksum = "a4eac2e6c19f5c3abc0c229bea31ff0b9b091c7b14990e8924b92902a303a0c0"
dependencies = [
"proc-macro2",
"quote",

View File

@ -12,7 +12,7 @@ path = "src/lib.rs"
[dependencies]
fluence-faas = "0.9.0"
air-interpreter-interface = { version = "0.6.0", path = "../../crates/interpreter-interface" }
air-interpreter-interface = { version = "0.7.0", path = "../../crates/interpreter-interface" }
avm-data-store = { version = "0.1.0", path = "../../crates/data-store" }
polyplets = { version = "0.1.2", path = "../../crates/polyplets" }

View File

@ -1,5 +1,6 @@
[package]
name = "avm-data-store"
description = "Definition of the AVM DataStore trait"
version = "0.1.0"
authors = ["Fluence Labs"]
edition = "2018"

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-data"
description = "Data format of the AIR interpreter"
version = "0.1.1"
version = "0.2.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"

View File

@ -1,7 +1,7 @@
[package]
name = "air-interpreter-interface"
description = "Interface of the AIR interpreter"
version = "0.6.1"
version = "0.7.0"
authors = ["Fluence Labs"]
edition = "2018"
license = "Apache-2.0"