-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Improved errors. * Unified rust-toolchain across packages. * Removed ContractPackageHash. * Moved handling Odra errors outside rpc client. * Removed casper types through odra types from rpc client. * Update chainspec to be compatible with newest version of Condor. * Native events.
- Loading branch information
Showing
113 changed files
with
2,244 additions
and
2,760 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
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 |
---|---|---|
|
@@ -2,7 +2,11 @@ | |
members = [ | ||
"odra", | ||
"odra-vm", | ||
"benchmark", | ||
"core", | ||
"examples", | ||
"examples/ourcoin", | ||
"modules", | ||
"odra-macros", | ||
"odra-casper/rpc-client", | ||
"odra-casper/livenet-env", | ||
|
@@ -11,36 +15,57 @@ members = [ | |
"odra-cli", | ||
"odra-schema", | ||
"odra-test", | ||
"odra-build" | ||
] | ||
exclude = [ "examples", "modules", "benchmark", "odra-casper/proxy-caller", "templates/blank", "templates/full", "templates/workspace", "tests"] | ||
"odra-build", | ||
] | ||
exclude = ["odra-casper/proxy-caller", "templates/blank", "templates/full", "templates/workspace", "tests"] | ||
resolver = "2" | ||
|
||
[workspace.package] | ||
version = "1.4.0" | ||
version = "2.0.0" | ||
authors = ["Jakub Płaskonka <[email protected]>", "Krzysztof Pobiarżyn <[email protected]>", "Maciej Zieliński <[email protected]>"] | ||
license = "MIT" | ||
homepage = "https://odra.dev/docs" | ||
repository = "https://github.com/odradev/odra" | ||
|
||
[workspace.dependencies] | ||
odra-core = { path = "core", version = "1.4.0" } | ||
odra-macros = { path = "odra-macros", version = "1.4.0" } | ||
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "1.4.0" } | ||
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "1.4.0" } | ||
odra-vm = { path = "odra-vm", version = "1.4.0" } | ||
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "1.4.0"} | ||
odra-casper-livenet-env = { path = "odra-casper/livenet-env", version = "1.4.0"} | ||
odra-schema = { path = "odra-schema", version = "1.4.0" } | ||
casper-contract = { version = "4.0.0", default-features = false } | ||
casper-types = { version = "4.0.1", default-features = false } | ||
casper-execution-engine = "7.0.1" | ||
casper-event-standard = "0.5.0" | ||
odra-core = { path = "core", version = "2.0.0" } | ||
odra-macros = { path = "odra-macros", version = "2.0.0" } | ||
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "2.0.0" } | ||
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "2.0.0" } | ||
odra-vm = { path = "odra-vm", version = "2.0.0" } | ||
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "2.0.0"} | ||
odra-schema = { path = "odra-schema", version = "2.0.0" } | ||
casper-contract = { git = "https://github.com/casper-network/casper-node.git", branch = "rustSDK-feat-2.0", default-features = false } | ||
casper-contract-schema = { git = "https://github.com/odradev/casper-contract-schema.git", branch = "feature/casper-2.0" } | ||
casper-types = "5.0.0" | ||
casper-execution-engine = { git = "https://github.com/casper-network/casper-node.git", branch = "rustSDK-feat-2.0" } | ||
casper-engine-test-support = { git = "https://github.com/casper-network/casper-node.git", branch = "rustSDK-feat-2.0" } | ||
casper-storage = { git = "https://github.com/casper-network/casper-node.git", branch = "rustSDK-feat-2.0" } | ||
casper-event-standard = { git = "https://github.com/odradev/casper-event-standard.git", branch = "rustSDK-feat-2.0" } | ||
casper-client = { git = "https://github.com/casper-ecosystem/casper-client-rs.git", branch = "rustSDK-feat-2.0" } | ||
blake2 = "0.10.6" | ||
log = "0.4.20" | ||
env_logger = "0.11.1" | ||
serde = { version = "1.0.195", default-features = false } | ||
serde_json = { version = "1.0.113", default-features = false } | ||
num-traits = { version = "0.2.14", default-features = false } | ||
mockall = { version = "0.12.1" } | ||
sha3 = { version = "0.10", default-features = false } | ||
hex = "0.4" | ||
tokio = "1.38" | ||
base16 = { version = "0.2", default-features = false } | ||
base64 = { version = "0.22", default-features = false, features = ["alloc"] } | ||
serde-json-wasm = { version = "1.0", default-features = false } | ||
anyhow = { version = "1.0.86", default-features = false } | ||
convert_case = "0.6.0" | ||
lazy_static = "1.5.0" | ||
|
||
[patch.crates-io] | ||
casper-types = { version = "5.0.0", git = "https://github.com/casper-network/casper-node", branch = "rustSDK-feat-2.0" } | ||
|
||
[profile.release] | ||
codegen-units = 1 | ||
lto = true | ||
|
||
[profile.dev.package."*"] | ||
opt-level = 3 |
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 was deleted.
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
Oops, something went wrong.