forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
63 lines (56 loc) · 1.41 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
resolver = "2"
members = [
"forc",
"forc-pkg",
"forc-plugins/forc-client",
"forc-plugins/forc-crypto",
"forc-plugins/forc-debug",
"forc-plugins/forc-doc",
"forc-plugins/forc-fmt",
"forc-plugins/forc-lsp",
"forc-plugins/forc-tx",
"forc-test",
"forc-tracing",
"forc-util",
"scripts/mdbook-forc-documenter",
"sway-ast",
"sway-core",
"sway-error",
"sway-ir",
"sway-ir/sway-ir-macros",
"sway-lsp",
"sway-parse",
"sway-types",
"sway-utils",
"swayfmt",
"test",
]
exclude = [
"examples/*",
"swayfmt/test_macros",
"forc-test/test_data"
]
[workspace.dependencies]
# Dependencies from the `fuel-core` repository:
fuel-core-client = { version = "0.22.0", default-features = false }
fuel-core-types = { version = "0.22.0", default-features = false }
# Dependencies from the `fuel-vm` repository:
fuel-asm = "0.43.1"
fuel-crypto = "0.43.1"
fuel-types = "0.43.1"
fuel-tx = "0.43.1"
fuel-vm = "0.43.1"
# Dependencies from the `fuels-rs` repository:
fuels-core = "0.54.0"
fuels-accounts = "0.54.0"
# Dependencies from the `forc-wallet` repository:
forc-wallet = "0.4.2"
# Dependencies from the `fuel-abi-types` repository:
fuel-abi-types = "0.4.0"
[workspace.package]
edition = "2021"
authors = ["Fuel Labs <contact@fuel.sh>"]
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/sway"