Skip to content

Commit

Permalink
Merge pull request radixdlt#124 from shghs123/main
Browse files Browse the repository at this point in the history
myTeamates challange complete
  • Loading branch information
jakerdxworks committed Oct 25, 2022
2 parents 467dd2e + e58f19d commit 27ecd02
Show file tree
Hide file tree
Showing 3 changed files with 498 additions and 0 deletions.
24 changes: 24 additions & 0 deletions smaller-challenges/myTeamMates/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
[package]
name = "myTeamMates"
version = "0.1.0"
edition = "2021"

[dependencies]
sbor = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.6.0" }
scrypto = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.6.0" }

[dev-dependencies]
transaction = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.6.0" }
radix-engine = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.6.0" }
scrypto-unit = { git = "https://github.com/radixdlt/radixdlt-scrypto", tag = "v0.6.0" }

[profile.release]
opt-level = 's' # Optimize for size.
lto = true # Enable Link Time Optimization.
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = 'abort' # Abort on panic.
strip = "debuginfo" # Strip debug info.
overflow-checks = true # Panic in the case of an overflow.

[lib]
crate-type = ["cdylib", "lib"]
Loading

0 comments on commit 27ecd02

Please sign in to comment.