Skip to content

Commit 7937ed4

Browse files
authored
Merge pull request #67 from PotLock/feat/lists
Add Lists contract
2 parents 0257aac + 7b9c5f7 commit 7937ed4

File tree

18 files changed

+2141
-17
lines changed

18 files changed

+2141
-17
lines changed

contracts/Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

contracts/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[workspace]
22
members = [
33
"donation",
4+
"lists",
45
"pot",
56
"pot_factory",
67
"registry",

contracts/lists/Cargo.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[package]
2+
name = "lists"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[lib]
7+
crate-type = ["cdylib"]
8+
9+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
10+
[dependencies]
11+
near-sdk = "4.1.1"
12+
# [profile.release] # removed as added to root Cargo.toml
13+
# codegen-units = 1
14+
# # Tell `rustc` to optimize for small code size.
15+
# opt-level = "z"
16+
# lto = true
17+
# debug = false
18+
# panic = "abort"
19+
# # Opt into extra safety checks on arithmetic operations https://stackoverflow.com/a/64136471/249801
20+
# overflow-checks = true

0 commit comments

Comments
 (0)