-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (37 loc) · 1.05 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
[workspace.package]
edition = "2021"
authors = ["Rexagon <[email protected]>", "MrWad3r <[email protected]>"]
rust-version = "1.83.0"
repository = "https://github.com/broxus/tycho-vm"
license = "MIT OR Apache-2.0"
[workspace]
resolver = "2"
members = ["executor", "vm", "vm-proc"]
[workspace.dependencies]
ahash = "0.8"
anyhow = "1.0"
bitflags = "2.4"
blake2 = "0.10.6"
criterion = "0.5"
darling = "0.20"
dyn-clone = "1.0"
everscale-crypto = "0.3.0"
everscale-types = { version = "0.1.2", default-features = false }
hex = "0.4.3"
num-bigint = "0.4"
num-integer = "0.1"
num-traits = "0.2"
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.8"
sha2 = "0.10.8"
syn = "2.0"
thiserror = "2.0"
tl-proto = "0.5.2"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-test = "0.2"
everscale-asm-macros = { git = "https://github.com/broxus/everscale-asm.git", rev = "4602a8f2f57b79555887c583c61b9ae4a9dbf75c" }
tycho-vm = { path = "./vm" }
[patch.crates-io]
everscale-types = { git = "https://github.com/broxus/everscale-types.git", rev = "f2d1f66a1d2e22cbf61bd4ef9783c35be26a2468" }