29 lines
667 B
TOML
29 lines
667 B
TOML
[package]
|
|
name = "near-mock-bridge-token"
|
|
version = "0.1.0"
|
|
authors = ["Josh Siegel <jsiegel@jumptrading.com>"]
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
serde = { version = "*", features = ["derive"] }
|
|
serde_json = "*"
|
|
near-sdk = { version = "4.0.0", features = ["unstable"] }
|
|
near-contract-standards = { version = "4.0.0" }
|
|
hex = { version = "0.4.3" }
|
|
|
|
[profile.release]
|
|
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
|
|
|
|
[workspace]
|
|
members = []
|