forked from radixdlt/radixdlt-scrypto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (31 loc) · 1.12 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
[workspace]
# NOTES:
# This workspace is intended to be used for the primary scrypto/radix engine library crates.
#
# In particular:
# * We purposefully don't include simulator - as it's an application, not a library
# The simulator receives its own separate Cargo.lock, that we source control.
# We don't source control the Cargo.lock for this workspace, because it's a workspace of libraries:
# https://doc.rust-lang.org/cargo/faq.html#why-do-binaries-have-cargolock-in-version-control-but-not-libraries
#
# * We don't include any Scrypto packages here - they should be loaded/built separately, as they need separate profiles.
# They either include their own shared workspace for a set of tests, or a [workspace] in each of their Cargo.tomls
# to avoid falling back to the root workspace.
members = [
"sbor-derive",
"sbor",
"sbor-tests",
"scrypto-abi",
"scrypto-derive",
"scrypto",
"scrypto-tests",
"scrypto-unit",
"transaction",
"native-sdk",
"radix-engine",
"radix-engine-interface",
"radix-engine-derive",
"radix-engine-stores",
"radix-engine-constants",
"utils",
]