-
Notifications
You must be signed in to change notification settings - Fork 65
/
Cargo.toml
29 lines (25 loc) · 1013 Bytes
/
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
[package]
name = "pallas-utxorpc"
description = "Pallas interoperability with the UTxORPC spec"
version = "0.32.0"
edition = "2021"
repository = "https://github.com/txpipe/pallas"
homepage = "https://github.com/txpipe/pallas"
documentation = "https://docs.rs/pallas-utxorpc"
license = "Apache-2.0"
readme = "README.md"
authors = ["Santiago Carmuega <[email protected]>"]
[dependencies]
# utxorpc-spec = { path = "../../../utxorpc/spec/gen/rust" }
utxorpc-spec = { version = "0.15.0" }
pallas-traverse = { version = "=0.32.0", path = "../pallas-traverse" }
pallas-primitives = { version = "=0.32.0", path = "../pallas-primitives" }
pallas-codec = { version = "=0.32.0", path = "../pallas-codec" }
pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" }
prost-types = "0.13.1"
# TODO: remove this dep once we have multiera params in traverse
pallas-applying = { version = "=0.32.0", path = "../pallas-applying" }
[dev-dependencies]
hex = "0.4.3"
serde_json = "1.0.120"
pretty_assertions = "1.4.0"