mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-11-16 15:58:17 +00:00
eead49beb0
* cargo.toml: transfer existing lints * rpc/interface: lints * rpc/json-rpc: lints * rpc/types: lints * storage/blockchain: lints * rpc/types: fix lints * cargo.toml: fix lint group priority * storage/blockchain: fix lints * fix misc lints * storage/database: fixes * storage/txpool: opt in lints + fixes * types: opt in + fixes * helper: opt in + fixes * types: remove borsh * rpc/interface: fix test * test fixes * database: fix lints * fix lint * tabs -> spaces * blockchain: `config/` -> `config.rs`
34 lines
No EOL
1,007 B
TOML
34 lines
No EOL
1,007 B
TOML
[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]
|
|
default = ["blockchain", "epee", "serde"]
|
|
blockchain = []
|
|
epee = ["dep:cuprate-epee-encoding"]
|
|
serde = ["dep:serde"]
|
|
proptest = ["dep:proptest", "dep:proptest-derive"]
|
|
|
|
[dependencies]
|
|
cuprate-epee-encoding = { path = "../net/epee-encoding", optional = true }
|
|
cuprate-fixed-bytes = { path = "../net/fixed-bytes" }
|
|
|
|
bytes = { workspace = true }
|
|
curve25519-dalek = { workspace = true }
|
|
monero-serai = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
thiserror = { workspace = true }
|
|
|
|
proptest = { workspace = true, optional = true }
|
|
proptest-derive = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
|
|
[lints]
|
|
workspace = true |