-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
115 lines (108 loc) · 3.05 KB
/
Cargo.toml
File metadata and controls
115 lines (108 loc) · 3.05 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[workspace]
exclude = [
"odra-casper/proxy-caller",
"templates/blank",
"templates/full",
"templates/workspace",
"tests",
]
members = [
"benchmark",
"core",
"examples",
"examples/ourcoin",
"modules",
"odra",
"odra-bdd",
"odra-build",
"odra-casper/livenet-env",
"odra-casper/rpc-client",
"odra-casper/test-vm",
"odra-casper/wasm-env",
"odra-cli",
"odra-macros",
"odra-schema",
"odra-test",
"odra-vm",
"odra-wasm-client",
"odra-wasm-client-builder",
]
resolver = "2"
[workspace.package]
authors = [
"Jakub Płaskonka <kuba@odra.dev>",
"Krzysztof Pobiarżyn <krzysztof@odra.dev>",
"Maciej Zieliński <maciej@odra.dev>",
]
edition = "2021"
homepage = "https://odra.dev/docs"
license = "MIT"
readme = "README.md"
repository = "https://github.com/odradev/odra"
version = "2.5.0"
[workspace.dependencies]
odra-casper-rpc-client = { path = "odra-casper/rpc-client", version = "2.5.0" }
odra-casper-test-vm = { path = "odra-casper/test-vm", version = "2.5.0" }
odra-casper-wasm-env = { path = "odra-casper/wasm-env", version = "2.5.0" }
odra-core = { path = "core", version = "2.5.0" }
odra-macros = { path = "odra-macros", version = "2.5.0" }
odra-schema = { path = "odra-schema", version = "2.5.0" }
odra-vm = { path = "odra-vm", version = "2.5.0" }
odra-wasm-client = { path = "odra-wasm-client", version = "2.5.0" }
casper-client = { version = "5.0", default-features = false }
casper-contract = { version = "5.1", default-features = false }
casper-contract-schema = { version = "0.6.0" }
casper-engine-test-support = "8.1"
casper-event-standard = "0.7"
casper-execution-engine = "8.1"
casper-storage = "2.1"
casper-types = "6.1"
anyhow = { version = "1.0", default-features = false }
backtrace = { version = "0.3" }
base16 = { version = "0.2", default-features = false }
base64 = { version = "0.22", default-features = false, features = ["alloc"] }
blake2 = "0.10"
bytes = "1.11"
chrono = { version = "0.4"}
clap = { version = "4.5"}
convert_case = "0.6"
cucumber = "0.21"
derive-try-from-ref = "0.1"
derive_more = { version = "2.1.0", features = ["full"] }
dotenv = "0.15"
futures = "0.3"
futures-util = "0.3"
gloo-utils = { version = "0.2"}
hex = "0.4"
itertools = "0.14"
js-sys = "0.3"
lazy_static = "1.5.0"
log = "0.4"
mockall = { version = "0.14" }
num-traits = { version = "0.2", default-features = false }
pretty_assertions = "1.4"
prettycli = "0.1"
proc-macro2 = "1.0"
project-root = "0.2"
quote = "1.0"
rand = { version = "0.9", default-features = false }
rand_chacha = { version = "0.9", default-features = false }
reqwest = { version = "0.12" }
serde = { version = "1.0", default-features = false }
serde_derive = { version = "1.0" }
serde-json-wasm = { version = "1.0", default-features = false }
serde_json = { version = "1.0", default-features = false }
sha3 = { version = "0.10", default-features = false }
syn = "2.0"
syn_derive = "0.2"
thiserror = "1.0"
tokio = "1.48"
toml = "0.9"
wasm-bindgen = "=0.2.100"
wasm-bindgen-futures = "0.4"
web-sys = { version = "0.3"}
[profile.release]
codegen-units = 1
lto = true
[profile.dev.package."*"]
opt-level = 3