diff --git a/archived/multi-service/ethqlite/Cargo.toml b/archived/multi-service/ethqlite/Cargo.toml index cf02871..4ac0eaf 100644 --- a/archived/multi-service/ethqlite/Cargo.toml +++ b/archived/multi-service/ethqlite/Cargo.toml @@ -9,12 +9,12 @@ name = "ethqlite" path = "src/main.rs" [dependencies] -marine-rs-sdk = { version="0.6.10", features = ["logger"]} +marine-rs-sdk = { version = "0.6.11", features = ["logger"] } log = "0.4.8" -marine-sqlite-connector = "0.5.0" -serde = {version = "1.0.118", features=["derive"]} +marine-sqlite-connector = "0.5.1" +serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.64" once_cell = "1.4.1" ed25519-dalek = "1.0.1" rand = "0.7.3" -uuid = {version = "0.8.2", features = ["serde", "v4"] } +uuid = { version = "0.8.2", features = ["serde", "v4"] } diff --git a/archived/multi-service/ethqlite/build.sh b/archived/multi-service/ethqlite/build.sh index 43ea6c9..97da19e 100755 --- a/archived/multi-service/ethqlite/build.sh +++ b/archived/multi-service/ethqlite/build.sh @@ -7,5 +7,5 @@ marine build --release rm -f artifacts/*.wasm cp target/wasm32-wasi/release/ethqlite.wasm artifacts/ -wget https://github.com/fluencelabs/sqlite/releases/download/v0.14.0_w/sqlite3.wasm +wget https://github.com/fluencelabs/sqlite/releases/download/v0.15.0_w/sqlite3.wasm mv sqlite3.wasm artifacts/ diff --git a/archived/web3-examples/web3-examples/facade/Cargo.toml b/archived/web3-examples/web3-examples/facade/Cargo.toml index 3b19653..6397c94 100644 --- a/archived/web3-examples/web3-examples/facade/Cargo.toml +++ b/archived/web3-examples/web3-examples/facade/Cargo.toml @@ -12,12 +12,12 @@ name = "facade" path = "src/main.rs" [dependencies] -serde = {version = "1.0.118", features = ["derive"] } +serde = { version = "1.0.118", features = ["derive"] } serde_json = "1.0.64" -marine-rs-sdk = { version = "=0.6.10", features = ["logger"]} +marine-rs-sdk = { version = "=0.6.11", features = ["logger"] } log = "0.4.8" chrono = "0.4.19" ethereum-types = "0.11.0" hex = "0.4.3" -tiny-keccak = {version = "2.0.2", features = ["keccak", "sha3"]} -marine-sqlite-connector = "0.5.0" \ No newline at end of file +tiny-keccak = { version = "2.0.2", features = ["keccak", "sha3"] } +marine-sqlite-connector = "0.5.1" diff --git a/marine-examples/README.md b/marine-examples/README.md index 14136da..813c3b1 100644 --- a/marine-examples/README.md +++ b/marine-examples/README.md @@ -198,7 +198,7 @@ You can build, inspect and test the project as outlined in the [Greeting Example ## SQLite Example -[SQLite](https://www.sqlite.org/index.html) is an ubiquitous persistence solution also available on the Fluence stack. Unlike basic compute modules, creating an SQLite service is a little more intricate. In order to create the service, we need two dependencies: An SQLite Wasm module and an SQLite adapter, where the adapter is a [WASM IT compliant](https://crates.io/crates/marine-sqlite-connector) [sqlite](https://github.com/stainless-steel/sqlite) package implementation. The SQLite Wasm module can be obtain from the repo as a [release](https://github.com/fluencelabs/sqlite/releases/tag/v0.14.0_w) or compiled from [code](https://github.com/fluencelabs/sqlite). For the purpose of this example, we use the release version -- see `build.sh`. +[SQLite](https://www.sqlite.org/index.html) is an ubiquitous persistence solution also available on the Fluence stack. Unlike basic compute modules, creating an SQLite service is a little more intricate. In order to create the service, we need two dependencies: An SQLite Wasm module and an SQLite adapter, where the adapter is a [WASM IT compliant](https://crates.io/crates/marine-sqlite-connector) [sqlite](https://github.com/stainless-steel/sqlite) package implementation. The SQLite Wasm module can be obtain from the repo as a [release](https://github.com/fluencelabs/sqlite/releases/tag/v0.15.0_w) or compiled from [code](https://github.com/fluencelabs/sqlite). For the purpose of this example, we use the release version -- see `build.sh`. As a result, our service is comprised of two modules: the SQLite Wasm module and our sqlite module. The Rust code, see `src/main.rs` is pretty standard fare but our config file changes signficiantly: diff --git a/marine-examples/sqlite/Cargo.toml b/marine-examples/sqlite/Cargo.toml index c4f4141..3c48459 100644 --- a/marine-examples/sqlite/Cargo.toml +++ b/marine-examples/sqlite/Cargo.toml @@ -10,8 +10,8 @@ name = "sqlite_test" path = "src/main.rs" [dependencies] -marine-rs-sdk = "0.6.10" -marine-sqlite-connector = "0.5.0" +marine-rs-sdk = "0.6.11" +marine-sqlite-connector = "0.5.1" [dev-dependencies] marine-rs-sdk-test = "0.2.0" diff --git a/marine-examples/sqlite/build.sh b/marine-examples/sqlite/build.sh index 76d931a..8ab89e8 100755 --- a/marine-examples/sqlite/build.sh +++ b/marine-examples/sqlite/build.sh @@ -8,5 +8,5 @@ marine build --release mkdir -p artifacts rm -f artifacts/*.wasm cp target/wasm32-wasi/release/sqlite_test.wasm artifacts/ -wget https://github.com/fluencelabs/sqlite/releases/download/v0.14.0_w/sqlite3.wasm +wget https://github.com/fluencelabs/sqlite/releases/download/v0.15.0_w/sqlite3.wasm mv sqlite3.wasm artifacts/