mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
27 lines
478 B
TOML
27 lines
478 B
TOML
[package]
|
|
name = "smart-contract"
|
|
version = "0.3.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
borsh = "0.9.3"
|
|
drk-sdk = { path = "../../src/sdk" }
|
|
|
|
[dependencies.pasta_curves]
|
|
git = "https://github.com/darkrenaissance/pasta_curves"
|
|
branch = "serialization-support"
|
|
features = ["borsh"]
|
|
|
|
[dev-dependencies]
|
|
darkfi = { path = "../../", features = ["wasm-runtime"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
codegen-units = 1
|
|
overflow-checks = true
|