22 lines
636 B
TOML
22 lines
636 B
TOML
[package]
|
|
name = "tokio-boring"
|
|
version = "1.0.0"
|
|
authors = ["Alex Crichton <alex@alexcrichton.com>", "Ivan Nikulin <ifaaan@gmail.com>"]
|
|
license = "MIT/Apache-2.0"
|
|
edition = "2018"
|
|
repository = "https://github.com/inikulin/boring"
|
|
homepage = "https://github.com/inikulin/boring"
|
|
documentation = "https://docs.rs/tokio-boring"
|
|
description = """
|
|
An implementation of SSL streams for Tokio backed by BoringSSL
|
|
"""
|
|
|
|
[dependencies]
|
|
boring = { version = "1.0.0", path = "../boring" }
|
|
boring-sys = { version = "1.0.0", path = "../boring-sys" }
|
|
tokio = "0.3"
|
|
|
|
[dev-dependencies]
|
|
futures = "0.3"
|
|
tokio = { version = "0.3", features = ["full"] }
|