-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
35 lines (31 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "plutus-ledger-api"
version = "3.0.1"
edition = "2021"
license = "Apache-2.0"
description = "Plutus Ledger types and utilities implemented in Rust"
repository = "https://github.com/mlabs-haskell/plutus-ledger-api-rust"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
proptest = "^1.6.0"
lbr-prelude = { version = "0.1.3", optional = true }
serde_json = { version = "1.0.133", optional = true }
num-bigint = "~0.4"
serde = { version = "^1.0.216", features = ["derive"], optional = true }
data-encoding = "^2.6.0"
thiserror = "^1.0.69"
linked-hash-map = "~0.5.6"
num-traits = "~0.2.19"
impl_ops = "0.1.1"
chrono = { version = "0.4.39", optional = true }
cardano-serialization-lib = "13.2.0"
is-plutus-data-derive = { version = "1.0.0", path = ".extras/is-plutus-data-derive-0" }
anyhow = "1.0.94"
nom = "7.1.3"
[features]
default = []
serde = ["dep:serde", "num-bigint/serde", "dep:serde_json"]
lbf = ["dep:lbr-prelude", "dep:serde_json"]
chrono = ["dep:chrono"]
[dev-dependencies]
goldie = "0.5.0"