-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
34 lines (32 loc) · 1.01 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[package]
name = "potlock-pot-factory"
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
# [dev-dependencies]
# anyhow = "1.0"
# near-primitives = "0.5.0"
# near-sdk = "4.0.0"
# near-units = "0.2.0"
# serde_json = "1.0"
# tokio = { version = "1.14", features = ["full"] }
# workspaces = "0.4.1"
# # remember to include a line for each contract
# fungible-token = { path = "./ft" } # TODO: UPDATE THIS AND THE BELOW
# defi = { path = "./test-contract-defi" }
# [workspace]
# # remember to include a member for each contract
# members = ["ft", "test-contract-defi"]