Skip to content

Commit

Permalink
Merge pull request #67 from PotLock/feat/lists
Browse files Browse the repository at this point in the history
Add Lists contract
  • Loading branch information
lachlanglen authored Mar 27, 2024
2 parents 0257aac + 7b9c5f7 commit 7937ed4
Show file tree
Hide file tree
Showing 18 changed files with 2,141 additions and 17 deletions.
7 changes: 7 additions & 0 deletions contracts/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[workspace]
members = [
"donation",
"lists",
"pot",
"pot_factory",
"registry",
Expand Down
20 changes: 20 additions & 0 deletions contracts/lists/Cargo.toml
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
Loading

0 comments on commit 7937ed4

Please sign in to comment.