mirror of
https://github.com/Cuprate/cuprate.git
synced 2025-01-10 12:54:47 +00:00
Boog900
79e4789e6a
Some checks failed
CI / fmt (push) Has been cancelled
CI / typo (push) Has been cancelled
CI / wasm-32-bit-support (cuprate-epee-encoding) (push) Has been cancelled
CI / wasm-32-bit-support (cuprate-fixed-bytes) (push) Has been cancelled
CI / wasm-32-bit-support (cuprate-rpc-types) (push) Has been cancelled
CI / ci (macos-latest, stable, bash) (push) Has been cancelled
Deny / audit (push) Has been cancelled
Doc / build (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
* rpc/types 32 bit support * fix docs * add 32 bit check to CI * remove `cuprate-types` * add comments to CI * Apply suggestions from code review Co-authored-by: hinto-janai <hinto.janai@protonmail.com> --------- Co-authored-by: hinto-janai <hinto.janai@protonmail.com>
29 lines
689 B
TOML
29 lines
689 B
TOML
[package]
|
|
name = "cuprate-epee-encoding"
|
|
version = "0.5.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Boog900"]
|
|
readme = "README.md"
|
|
keywords = ["monero", "epee", "no-std"]
|
|
description = "Epee binary format library."
|
|
repository = "https://github.com/Boog900/epee-encoding"
|
|
rust-version = "1.60"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["dep:thiserror", "bytes/std", "cuprate-fixed-bytes/std"]
|
|
|
|
[dependencies]
|
|
cuprate-fixed-bytes = { workspace = true, default-features = false }
|
|
|
|
paste = "1.0.15"
|
|
ref-cast = "1.0.23"
|
|
bytes = { workspace = true }
|
|
thiserror = { workspace = true, optional = true}
|
|
|
|
[dev-dependencies]
|
|
hex = { workspace = true, features = ["default"] }
|
|
|
|
[lints]
|
|
workspace = true
|