Skip to content

Commit

Permalink
Format Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
fadeevab committed Jun 14, 2022
1 parent 9902832 commit 4e9f777
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,24 @@
[package]
edition = "2018"
name = "usdt-gold"
version = "0.1.0"
authors = ["Binary Star <[email protected]>"]
edition = "2018"

[lib]
crate-type = ["cdylib", "rlib"]

[dependencies]
near-sdk = { version = "4.0.0-pre.4", features = ["unstable"] }
near-contract-standards = "4.0.0-pre.4"
near-sdk = {version = "4.0.0-pre.4", features = ["unstable"]}

[dev-dependencies]
near-sdk-sim = "4.0.0-pre.4"

[profile.release]
codegen-units = 1
# Tell `rustc` to optimize for small code size.
opt-level = "z"
lto = true
debug = false
lto = true
opt-level = "z"
panic = "abort"
# Opt into extra safety checks on arithmetic operations https://stackoverflow.com/a/64136471/249801
# Opt in extra safety checks on arithmetic operations https://stackoverflow.com/a/64136471/249801
overflow-checks = true

0 comments on commit 4e9f777

Please sign in to comment.