cuprate/Cargo.toml

31 lines
763 B
TOML
Raw Normal View History

2023-02-07 14:44:32 +00:00
[package]
name = "cuprate"
2023-02-08 12:54:55 +00:00
version = "0.0.1"
2023-02-07 14:44:32 +00:00
edition = "2021"
2023-02-08 12:54:55 +00:00
rust-version = "1.67.0"
description = "An upcoming experimental, modern & secure monero node"
readme = "readme.md"
repository = "https://github.com/SyntheticBird45/cuprate"
license = "BSD-3-Clause"
license-file = "LICENSE"
# All Contributors on github
authors=["SyntheticBird45"]
2023-02-07 14:44:32 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
monero = {version = "*", features = ['serde']}
serde = "*"
2023-02-08 12:54:55 +00:00
# As suggested by /u/danda :
thiserror = "*"
[profile.release]
opt-level = 3
debug = 0
strip = "symbols"
lto = "thin"
panic = "abort"
build.rustflags=["-Zcf-protection=full", "-Zsanitizer=cfi", "-Crelocation-model=pie", "-Cstack-protector=all"]