forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (25 loc) · 886 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.1"
authors = ["Informal Systems <[email protected]>"]
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.71"
description = """
Rust implementation of a RESTful API server for Hermes
"""
[dependencies]
ibc-relayer-types = { version = "0.27.1", path = "../relayer-types" }
ibc-relayer = { version = "0.27.1", path = "../relayer" }
crossbeam-channel = "0.5"
serde = "1.0"
tracing = "0.1"
axum = "0.6"
tokio = "1.26"
[dev-dependencies]
reqwest = { version = "0.11.16", features = ["json"], default-features = false }
toml = "0.8.8"