forked from airalab/robonomics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Upgrade to latest substrate * Bump version * Enable jemalloc allocator for native builds * Fix browser wasm builds * Added robonomics-sensors crate
- Loading branch information
Showing
13 changed files
with
419 additions
and
314 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "node-cli" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Airalab <[email protected]>"] | ||
description = "Robonomics node implementation in Rust & Substrate." | ||
build = "build.rs" | ||
|
@@ -86,6 +86,7 @@ sc-rpc = { git = "https://github.com/paritytech/substrate" } | |
# CLI-specific dependencies | ||
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true } | ||
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true } | ||
parity-util-mem = { version = "*", default-features = false, optional = true } | ||
|
||
# Browser bundle build support | ||
wasm-bindgen = { version = "0.2.57", optional = true } | ||
|
@@ -126,6 +127,7 @@ cli = [ | |
"structopt", | ||
"platforms", | ||
"sc-service/rocksdb", | ||
"parity-util-mem/jemalloc-global", | ||
"robonomics-protocol/cli", | ||
] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ipci-runtime" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "robonomics-runtime" | ||
version = "0.17.0" | ||
version = "0.17.1" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2018" | ||
build = "build.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[package] | ||
name = "robonomics-sensors" | ||
description = "Robonomics Network supported sensors." | ||
version = "0.1.0" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
robonomics-protocol = { path = "../protocol" } | ||
|
||
# cli specified | ||
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true } | ||
structopt = { version = "0.3.8", optional = true } | ||
async-std = { version = "1.5", optional = true } | ||
|
||
[features] | ||
default = [] | ||
|
||
## Enables console interface components. | ||
cli = [ | ||
"structopt", | ||
"async-std", | ||
"sc-cli", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/////////////////////////////////////////////////////////////////////////////// | ||
// | ||
// Copyright 2018-2020 Airalab <[email protected]> | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
/////////////////////////////////////////////////////////////////////////////// | ||
//! Robonomics Network supported sensors. |