forked from informalsystems/hermes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 812 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.19.0"
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/ibc-rs"
rust-version = "1.60"
description = """
Rust implementation of a RESTful API server for Hermes
"""
[dependencies]
ibc = { version = "0.19.0", path = "../modules" }
ibc-relayer = { version = "0.19.0", path = "../relayer" }
crossbeam-channel = "0.5"
rouille = "3.5"
serde = "1.0"
tracing = "0.1"
[dev-dependencies]
serde_json = "1.0.85"
toml = "0.5.9"
ureq = "2.5.0"