Created
June 24, 2022 19:38
-
-
Save kalloc/98608bd59258d4b1b01e5adff28d2cd1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
[package] | |
name = "lola-nft" | |
version = "0.1.4" | |
authors = ["Nikita Kuznetsov <[email protected]>"] | |
edition = "2018" | |
[dependencies] | |
near-sdk = "4.0.0" | |
# near-sdk-sim = "4.0.0-pre.9" | |
near-contract-standards = "4.0.0" | |
ansi_term = "0.12.1" | |
serde_json = { version = "1.0" } | |
nft = { path = "./nft" } | |
ft = { path = "./ft" } | |
workspaces = "0.3.0" | |
tokio = { version = "1.10.0", features = ["full"] } | |
anyhow = "1.0" | |
maplit = "1.0" | |
near-units = "0.1.0" | |
[features] | |
expensive_tests = [] | |
[profile.release] | |
codegen-units = 1 | |
# Tell `rustc` to optimize for small code size. | |
opt-level = "z" | |
lto = true | |
debug = false | |
panic = "abort" | |
overflow-checks = true | |
[workspace] | |
# remember to include a member for each contract | |
members = [ | |
"nft", | |
"ft", | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment