forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Forc.toml
38 lines (38 loc) · 799 Bytes
/
Forc.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
# This workspace is a collection of packages that manages all the example contracts
# in the Sway repo, where each example is a package member of the workspace.
[workspace]
members = [
"abi_supertraits",
"arrays",
"methods_and_associated_functions",
"asm_return_tuple_pointer",
"break_and_continue",
"cei_analysis",
"configurable_constants",
"counter",
"enums",
"fizzbuzz",
"hashing",
"identity",
"liquidity_pool",
"match_statements",
"msg_sender",
"native_token",
"option",
"ownership",
"ref_mut_params",
"result",
"signatures",
"storage_example",
"storage_map",
"storage_variables",
"storage_vec",
"structs",
"subcurrency",
"tuples",
"type_aliases",
"vec",
"wallet_abi",
"wallet_contract_caller_script",
"wallet_smart_contract",
]