-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 1017 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 1017 Bytes
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
[workspace]
resolver = "2"
members = [
"packages/rust-client-wasm",
"packages/rust-client",
"packages/rust-foundation-audiovisual",
"packages/near-wasm",
"packages/ipfs-integration",
"packages/marketplace",
"packages/contracts/near/soulbound-nft",
# NOTE: solana-client and polkadot-client are excluded from the workspace
# due to conflicting dependency versions (anchor-lang vs subxt/sp-core).
# They can be built independently when needed:
# - To build solana-client: cd packages/solana-client && cargo build
# - To build polkadot-client: cd packages/polkadot-client && cargo build
# "packages/solana-client",
# "packages/polkadot-client",
]
[profile.release]
overflow-checks = true
lto = "fat"
codegen-units = 1
[profile.dev]
overflow-checks = true
# [patch.crates-io]
# extism = { path = "D:/extism-main/extism-main/extism-main/runtime" }
# extism-manifest = { path = "D:/extism-main/extism-main/extism-main/manifest" }