Skip to content

Instantly share code, notes, and snippets.

@kalloc
Created June 24, 2022 19:38
Show Gist options
  • Save kalloc/98608bd59258d4b1b01e5adff28d2cd1 to your computer and use it in GitHub Desktop.
Save kalloc/98608bd59258d4b1b01e5adff28d2cd1 to your computer and use it in GitHub Desktop.
[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