forked from ontio/ontology-wasm-cdt-rust
-
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.
- Loading branch information
Showing
4 changed files
with
19 additions
and
7 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -3,6 +3,10 @@ name = "ontio-bump-alloc" | |
version = "0.1.0" | ||
authors = ["laizy <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
homepage = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
repository = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
description = "bump memory allocation for ontology wasm engine" | ||
|
||
[dependencies] | ||
cfg-if = { version = "0.1", 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 |
---|---|---|
|
@@ -3,6 +3,10 @@ name = "ontio-codegen" | |
version = "0.1.0" | ||
authors = ["laizy <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
homepage = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
repository = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
description = "codegen for ontio-std" | ||
|
||
[lib] | ||
proc-macro = true | ||
|
@@ -17,7 +21,3 @@ heck = {version = "0.3.1",default-features = false} | |
|
||
[dev-dependencies] | ||
ontio-std = {path="../ontio-std"} | ||
|
||
[features] | ||
mock = ["ontio-std/mock"] | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,10 @@ name = "ontio-derive-codec" | |
version = "0.1.0" | ||
authors = ["Lucas <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
homepage = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
repository = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
description = "codec derive macro for ontio-std" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
|
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 |
---|---|---|
|
@@ -3,15 +3,19 @@ name = "ontio-std" | |
version = "0.1.0" | ||
authors = ["laizy <[email protected]>"] | ||
edition = "2018" | ||
license = "Apache-2.0/MIT" | ||
homepage = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
repository = "https://github.com/ontio/ontology-wasm-cdt-rust" | ||
description = "development library for ontology wasm contract" | ||
|
||
[dependencies] | ||
wee_alloc = "0.4" | ||
ontio-bump-alloc = {path = "../ontio-bump-alloc", optional = true} | ||
ontio-bump-alloc = {version = "0.1", path = "../ontio-bump-alloc", optional = true} | ||
fixed-hash = { version = "0.4", default-features = false } | ||
cfg-if = { version = "0.1", default-features = false } | ||
byteorder = { version = "1", default-features= false, features = ["i128"] } | ||
ontio-codegen = { path = "../ontio-codegen"} | ||
ontio-derive-codec = { path = "../ontio-derive-codec"} | ||
ontio-codegen = { version = "0.1", path = "../ontio-codegen"} | ||
ontio-derive-codec = { version = "0.1", path = "../ontio-derive-codec"} | ||
sha2 = {version="0.8", optional=true} | ||
|
||
[dev-dependencies] | ||
|