This repository has been archived on 2022-07-24. You can view files and clone it, but cannot push or open issues or pull requests.
itconfig/examples/hyper/Cargo.toml

22 lines
541 B
TOML
Raw Normal View History

2020-01-12 14:22:08 +03:00
[package]
name = "itconfig-hyper-example"
version = "0.1.0"
authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itconfig = { path = "../../itconfig" }
hyper = "0.13.1"
serde_json = "1.0"
tokio = { version = "0.2", features = ["macros"] }
bytes = "0.5"
futures-util = { version = "0.3", default-features = false }
2020-02-11 09:32:10 +03:00
pretty_env_logger = "0.3"
2020-03-12 23:20:34 +03:00
lazy_static = "1.4.0"
[features]
default = ["static"]
static = []