forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 888 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
[package]
name = "ibc-relayer-rest"
version = "0.27.2"
authors = ["Informal Systems <hello@informal.systems>"]
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
keywords = ["ibc", "rest", "api", "cosmos", "tendermint"]
homepage = "https://hermes.informal.systems/"
repository = "https://github.com/informalsystems/hermes"
rust-version = "1.79.0"
description = """
Rust implementation of a RESTful API server for Hermes
"""
[dependencies]
ibc-relayer-types = { workspace = true }
ibc-relayer = { workspace = true }
axum = { workspace = true }
crossbeam-channel = { workspace = true }
serde = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
[dev-dependencies]
reqwest = { workspace = true, features = ["json"] }
toml = { workspace = true }