-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from PotLock/feat/lists
Add Lists contract
- Loading branch information
Showing
18 changed files
with
2,141 additions
and
17 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[workspace] | ||
members = [ | ||
"donation", | ||
"lists", | ||
"pot", | ||
"pot_factory", | ||
"registry", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "lists" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | ||
near-sdk = "4.1.1" | ||
# [profile.release] # removed as added to root Cargo.toml | ||
# codegen-units = 1 | ||
# # Tell `rustc` to optimize for small code size. | ||
# opt-level = "z" | ||
# lto = true | ||
# debug = false | ||
# panic = "abort" | ||
# # Opt into extra safety checks on arithmetic operations https://stackoverflow.com/a/64136471/249801 | ||
# overflow-checks = true |
Oops, something went wrong.