http-mel 0.8.0

Mélodium HTTP library
Documentation
[package]
name = "http-mel"
version = "0.8.0"
authors = ["Quentin VIGNAUD <quentin.vignaud@melodium.tech>"]
rust-version = "1.60"
edition = "2021"
license = "EUPL-1.2"
homepage = "https://melodium.tech"
repository = "https://gitlab.com/melodium/melodium"
readme = "README.md"
description = "Mélodium HTTP library"
keywords = ["dataflow","parallelization","scalability","async","signal"]
categories = ["compilers", "science", "concurrency", "asynchronous"]

[lib]
crate-type = ["lib", "cdylib"]
name = "http_mel"

[dependencies]
async-std = {version="~1.12", features=["unstable"]}
futures = "0.3"
melodium-core = { path = "../../melodium-core", version = "0.8.0" }
melodium-macro = { path = "../../melodium-macro", version = "0.8.0" }
std-mel = { path = "../std-mel", version = "0.8.0" }
serde = "1.0.185"
trillium = { version = "0.2", features = ["serde"] }
trillium-router = "0.3"
trillium-async-std = "0.3"
trillium-client = "0.5"
ringbuf = "0.3"
async-ringbuf = "0.1"
routefinder = "0.5"
uuid = { version = "1.7", features = ["v4", "fast-rng"] }

[features]
mock = []
plugin = []
real = []

[target.'cfg(all(not(target_os = "windows"), not(target_vendor = "apple")))'.dependencies.trillium-rustls]
version = "0.6"
default-features = false
features = ["native-roots", "ring", "client"]

[target.'cfg(all(target_os = "windows", target_env = "gnu"))'.dependencies.trillium-rustls]
version = "0.6"
default-features = false
features = ["ring", "client"]

[target.'cfg(any(target_env = "msvc", target_vendor = "apple"))'.dependencies.trillium-native-tls]
version = "0.3"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]