pallas/pallas-codec/Cargo.toml
Lucas 7fada705a0
feat: Move flat en/de from aiken to pallas (#303)
Nothing new is going on within the code itself.
I simply popped the crate into pallas_codec
as a submodule `pallas_codec::flat`. I also moved
over the tests that we had in the crate. In general
this is in solid shape and hasn't had any changes for
months. That said there could be some things that require love
like dealing with BigInt.

Co-authored-by: Kasey White <kwhitemsg@gmail.com>
2023-10-04 19:08:52 -04:00

24 lines
665 B
TOML

[package]
name = "pallas-codec"
description = "Pallas common CBOR encoding interface and utilities"
version = "0.19.1"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
documentation = "https://docs.rs/pallas-codec"
license = "Apache-2.0"
readme = "README.md"
authors = [
"Santiago Carmuega <santiago@carmuega.me>",
"Lucas Rosa <x@rvcas.dev>",
"Kasey White <kwhitemsg@gmail.com>",
]
[dependencies]
hex = "0.4.3"
minicbor = { version = "0.19", features = ["std", "half", "derive"] }
serde = { version = "1.0.143", features = ["derive"] }
thiserror = "1.0.39"
[dev-dependencies]
proptest = "1.1.0"