chore(math): initialize pallas-math crate (#474)

This commit is contained in:
Andrew Westberg 2024-06-29 20:43:06 +00:00 committed by GitHub
parent 9011a2e078
commit 1fdf8dc01f
6 changed files with 53 additions and 0 deletions

19
pallas-math/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "pallas-math"
description = "Mathematics functions for Cardano"
version = "0.27.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
documentation = "https://docs.rs/pallas-math"
license = "Apache-2.0"
readme = "README.md"
authors = ["Andrew Westberg <andrewwestberg@gmail.com>"]
[dependencies]
rug = "1.24.1"
[dev-dependencies]
quickcheck = "1.0"
quickcheck_macros = "1.0"
rand = "0.8"