2024-03-27 00:46:32 +00:00
|
|
|
[package]
|
|
|
|
name = "cuprate-types"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
description = "Cuprate data types"
|
|
|
|
license = "MIT"
|
|
|
|
authors = ["hinto-janai"]
|
|
|
|
repository = "https://github.com/Cuprate/cuprate/tree/main/types"
|
|
|
|
keywords = ["cuprate", "types"]
|
|
|
|
|
|
|
|
[features]
|
2024-07-16 21:47:50 +00:00
|
|
|
default = ["blockchain", "epee", "serde"]
|
2024-06-04 17:19:35 +00:00
|
|
|
blockchain = []
|
2024-07-16 21:47:50 +00:00
|
|
|
epee = ["dep:cuprate-epee-encoding"]
|
|
|
|
serde = ["dep:serde"]
|
2024-03-27 00:46:32 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2024-07-16 21:47:50 +00:00
|
|
|
cuprate-epee-encoding = { path = "../net/epee-encoding", optional = true }
|
|
|
|
cuprate-fixed-bytes = { path = "../net/fixed-bytes" }
|
|
|
|
|
|
|
|
bytes = { workspace = true }
|
2024-03-27 00:46:32 +00:00
|
|
|
curve25519-dalek = { workspace = true }
|
|
|
|
monero-serai = { workspace = true }
|
2024-07-16 21:47:50 +00:00
|
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
2024-03-27 00:46:32 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|