cuprate/Cargo.toml

38 lines
748 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"
2023-02-08 22:03:15 +00:00
license = "GPL-3"
repository = "https://github.com/SyntheticBird45/cuprate"
2023-02-08 12:54:55 +00:00
# All Contributors on github
2023-02-08 22:03:15 +00:00
authors=[
"SyntheticBird45 <@someoneelse495495:matrix.org>"
]
2023-02-08 12:54:55 +00:00
2023-02-08 22:03:15 +00:00
[workspace]
2023-02-07 14:44:32 +00:00
2023-02-08 22:03:15 +00:00
members = [
"blockchain_db"
]
2023-02-07 14:44:32 +00:00
[workspace.dependencies]
2023-02-07 14:44:32 +00:00
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"]