-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
46 lines (44 loc) · 1.69 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
members = [
"odra",
"odra-vm",
"core",
"odra-macros",
"odra-casper/rpc-client",
"odra-casper/livenet-env",
"odra-casper/wasm-env",
"odra-casper/test-vm",
"odra-cli",
"odra-schema",
"odra-test",
"odra-build"
]
exclude = [ "examples", "modules", "benchmark", "odra-casper/proxy-caller", "templates/blank", "templates/full", "templates/workspace", "tests"]
resolver = "2"
[workspace.package]
version = "1.5.1"
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.5.1" }
odra-macros = { path = "odra-macros", version = "1.5.1" }
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "1.5.1" }
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "1.5.1" }
odra-vm = { path = "odra-vm", version = "1.5.1" }
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "1.5.1"}
odra-casper-livenet-env = { path = "odra-casper/livenet-env", version = "1.5.1"}
odra-schema = { path = "odra-schema", version = "1.5.1" }
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"
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" }
tokio = "1.38"