forked from FuelLabs/fuel-vm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
33 lines (31 loc) · 1.21 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
[workspace]
members = [
"fuel-asm",
"fuel-crypto",
"fuel-merkle",
"fuel-storage",
"fuel-tx",
"fuel-tx/test-helpers",
"fuel-types",
"fuel-vm",
]
resolver = "2"
[workspace.package]
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies", "data-structures", "parsing"]
edition = "2021"
homepage = "https://fuel.network/"
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-vm"
version = "0.39.0"
[workspace.dependencies]
fuel-asm = { version = "0.39.0", path = "fuel-asm", default-features = false }
fuel-crypto = { version = "0.39.0", path = "fuel-crypto", default-features = false }
fuel-derive = { version = "0.39.0", path = "fuel-derive", default-features = false }
fuel-merkle = { version = "0.39.0", path = "fuel-merkle", default-features = false }
fuel-storage = { version = "0.39.0", path = "fuel-storage", default-features = false }
fuel-tx = { version = "0.39.0", path = "fuel-tx", default-features = false }
fuel-types = { version = "0.39.0", path = "fuel-types", default-features = false }
fuel-vm = { version = "0.39.0", path = "fuel-vm", default-features = false }
bincode = { version = "1.3", default-features = false }
criterion = "0.5.0"