forked from kindfi-org/kindfi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (53 loc) · 1.68 KB
/
Copy pathCargo.toml
File metadata and controls
66 lines (53 loc) · 1.68 KB
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
63
64
65
66
[workspace]
resolver = "2"
members = [
# Auth contracts
"contracts/auth-contracts/account",
"contracts/auth-contracts/account-factory",
"contracts/auth-contracts/auth-controller",
# NFT contract
"contracts/nft-kindfi",
# Reputation contract
"contracts/reputation",
# Quest contract
"contracts/quest",
# Streak contract
"contracts/streak",
# Referral contract
"contracts/referral",
# Governance contract
"contracts/governance",
# TODO: Implement these contracts or delete them
# "contracts/academy-graduation-nft",
# "contracts/academy-verifier",
# "contracts/academy-progress-tracker",
# "contracts/academy-badge-tracker",
# "contracts/mock_badge_tracker",
# "contracts/mock_progress_tracker",
]
[workspace.package]
authors = ["Kindfi Org"]
edition = "2021"
license = "MIT"
repository = "https://github.com/kindfi-org/kindfi.git"
categories = ["no-std", "wasm"]
version = "0.1.0"
[workspace.dependencies]
soroban-sdk = "23.4.0"
stellar-access = { git = "https://github.com/OpenZeppelin/stellar-contracts", tag = "v0.6.0" }
stellar-macros = { git = "https://github.com/OpenZeppelin/stellar-contracts", tag = "v0.6.0" }
stellar-tokens = { git = "https://github.com/OpenZeppelin/stellar-contracts", tag = "v0.6.0" }
stellar-contract-utils = { git = "https://github.com/OpenZeppelin/stellar-contracts", tag = "v0.6.0" }
[profile.release]
opt-level = "z"
overflow-checks = true
debug = 0
strip = "symbols"
debug-assertions = false
panic = "abort"
codegen-units = 1
lto = true
# For more information about this profile see https://soroban.stellar.org/docs/basic-tutorials/logging#cargotoml-profile
[profile.release-with-logs]
inherits = "release"
debug-assertions = true