mirror of
https://github.com/Cuprate/cuprate.git
synced 2024-12-22 19:49:28 +00:00
63216aecae
Some checks failed
Doc / build (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
CI / ci (ubuntu-latest, stable, bash) (push) Has been cancelled
CI / ci (windows-latest, stable-x86_64-pc-windows-gnu, msys2 {0}) (push) Has been cancelled
Doc / deploy (push) Has been cancelled
Audit / audit (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
Deny / audit (push) Has been cancelled
Defines cuprate members as workspace dependencies - Defines cuprate members as workspace dependencies - Changed all `path` import into `workspace = true` Co-authored-by: Boog900 <boog900@tutanota.com>
42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
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", "json", "hex"]
|
|
blockchain = []
|
|
epee = ["dep:cuprate-epee-encoding"]
|
|
serde = ["dep:serde"]
|
|
proptest = ["dep:proptest", "dep:proptest-derive"]
|
|
json = ["hex", "dep:cuprate-helper"]
|
|
hex = ["dep:hex"]
|
|
|
|
[dependencies]
|
|
cuprate-epee-encoding = { workspace = true, optional = true, features = ["std"] }
|
|
cuprate-helper = { workspace = true, optional = true, features = ["cast"] }
|
|
cuprate-fixed-bytes = { workspace = true }
|
|
|
|
bytes = { workspace = true }
|
|
curve25519-dalek = { workspace = true }
|
|
monero-serai = { workspace = true }
|
|
hex = { workspace = true, features = ["serde", "alloc"], optional = true }
|
|
serde = { workspace = true, features = ["derive"], optional = true }
|
|
strum = { workspace = true, features = ["derive"] }
|
|
thiserror = { workspace = true }
|
|
|
|
proptest = { workspace = true, optional = true }
|
|
proptest-derive = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = { workspace = true }
|
|
pretty_assertions = { workspace = true }
|
|
serde_json = { workspace = true, features = ["std"] }
|
|
|
|
[lints]
|
|
workspace = true
|