File tree Expand file tree Collapse file tree 3 files changed +498
-0
lines changed
smaller-challenges/myTeamMates Expand file tree Collapse file tree 3 files changed +498
-0
lines changed Original file line number Diff line number Diff line change
1
+ [package ]
2
+ name = " myTeamMates"
3
+ version = " 0.1.0"
4
+ edition = " 2021"
5
+
6
+ [dependencies ]
7
+ sbor = { git = " https://github.com/radixdlt/radixdlt-scrypto" , tag = " v0.6.0" }
8
+ scrypto = { git = " https://github.com/radixdlt/radixdlt-scrypto" , tag = " v0.6.0" }
9
+
10
+ [dev-dependencies ]
11
+ transaction = { git = " https://github.com/radixdlt/radixdlt-scrypto" , tag = " v0.6.0" }
12
+ radix-engine = { git = " https://github.com/radixdlt/radixdlt-scrypto" , tag = " v0.6.0" }
13
+ scrypto-unit = { git = " https://github.com/radixdlt/radixdlt-scrypto" , tag = " v0.6.0" }
14
+
15
+ [profile .release ]
16
+ opt-level = ' s' # Optimize for size.
17
+ lto = true # Enable Link Time Optimization.
18
+ codegen-units = 1 # Reduce number of codegen units to increase optimizations.
19
+ panic = ' abort' # Abort on panic.
20
+ strip = " debuginfo" # Strip debug info.
21
+ overflow-checks = true # Panic in the case of an overflow.
22
+
23
+ [lib ]
24
+ crate-type = [" cdylib" , " lib" ]
You can’t perform that action at this time.
0 commit comments