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.
* Added RWS pallet * Added RWS tests * Fix node build * Fix code style
- Loading branch information
Showing
12 changed files
with
612 additions
and
148 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
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Airalab <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "1.3.5", default-features = false, features = ["derive"] } | ||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Airalab <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "1.3.5", default-features = false, features = ["derive"] } | ||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ authors = ["Airalab <[email protected]>"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
codec = { package = "parity-scale-codec", version = "1.3.0", default-features = false, features = ["derive"] } | ||
codec = { package = "parity-scale-codec", version = "1.3.5", default-features = false, features = ["derive"] } | ||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
|
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,33 @@ | ||
[package] | ||
name = "pallet-robonomics-rws" | ||
description = "Robonomics Web Services subscription runtime module." | ||
version = "0.1.0" | ||
authors = ["Airalab <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
serde = { version = "1.0.101", optional = true } | ||
codec = { package = "parity-scale-codec", version = "1.3.5", default-features = false, features = ["derive"] } | ||
sp-std = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
frame-system = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
frame-support = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" , default-features = false } | ||
|
||
[dev-dependencies] | ||
sp-io = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } | ||
sp-core = { git = "https://github.com/paritytech/substrate", branch = "rococo-branch" } | ||
node-primitives = { path = "../../../bin/node/primitives" } | ||
pallet-robonomics-datalog = { path = "../datalog" } | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"serde", | ||
"codec/std", | ||
"sp-std/std", | ||
"sp-runtime/std", | ||
"frame-system/std", | ||
"frame-support/std", | ||
"pallet-timestamp/std", | ||
] |
Oops, something went wrong.