forked from FuelLabs/fuel-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 773 Bytes
/
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
[package]
name = "fuel-core-interfaces"
version = "0.5.0"
authors = ["Fuel Labs <[email protected]>"]
categories = ["cryptography::cryptocurrencies"]
edition = "2021"
homepage = "https://fuel.network/"
keywords = ["blockchain", "cryptocurrencies", "fuel-vm", "vm"]
license = "BUSL-1.1"
repository = "https://github.com/FuelLabs/fuel-core"
description = "Fuel core interfaces"
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
fuel-asm = "0.3"
fuel-storage = "0.1"
fuel-tx = { version = "0.7", features = ["serde-types"] }
fuel-types = { version = "0.3", features = ["serde-types"] }
fuel-vm = "0.6"
futures = "0.3"
lazy_static = "1.4"
parking_lot = "0.11"
thiserror = "1.0"
tokio = { version = "1.14", features = ["full"] }
[dev-dependencies]
[features]
test_helpers = []