17 lines
430 B
TOML
17 lines
430 B
TOML
[package]
|
|
name = "no_std_test"
|
|
version = "0.1.0"
|
|
authors = ["Elichai Turkel <elichai.turkel@gmail.com>"]
|
|
|
|
[dependencies]
|
|
secp256k1 = { path = "../", default-features = false, features = ["serde", "rand"] }
|
|
libc = { version = "0.2", default-features = false }
|
|
serde_cbor = { version = "0.10", default-features = false } # A random serializer that supports no-std.
|
|
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|