serai/message-queue/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

[package]
name = "serai-message-queue"
version = "0.1.0"
description = "A message queue focused on safety"
license = "AGPL-3.0-only"
repository = "https://github.com/serai-dex/serai/tree/develop/message-log"
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
keywords = []
edition = "2021"
publish = false
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
# Macros
lazy_static = "1"
serde = { version = "1", features = ["derive"] }
# Encoders
hex = "0.4"
bincode = "1"
serde_json = "1"
# Libs
zeroize = "1"
rand_core = "0.6"
# Cryptography
transcript = { package = "flexible-transcript", path = "../crypto/transcript", features = ["recommended"] }
ciphersuite = { path = "../crypto/ciphersuite", features = ["ristretto"] }
schnorr-signatures = { path = "../crypto/schnorr" }
# Application
tokio = { version = "1", features = ["full"] }
2023-07-17 04:20:10 +00:00
serai-db = { path = "../common/db", features = ["rocksdb"] }
rocksdb = "0.21"
serai-env = { path = "../common/env" }
serai-primitives = { path = "../substrate/primitives" }
jsonrpsee = { version = "0.16", features = ["server"] }
reqwest = { version = "0.11", features = ["json"] }