samotop 0.12.0

SMTP server and library built on async-std
Documentation
[package]
name = "samotop"
version = "0.12.0"
authors = ["jocutajar <tellnoone@robajz.info>"]
license = "MIT OR Apache-2.0"
description = "SMTP server and library built on async-std"
documentation = "https://docs.rs/samotop/"
homepage = "https://gitlab.com/BrightOpen/BackYard/Samotop/"
repository = "https://gitlab.com/BrightOpen/BackYard/Samotop/"
readme = "README.md"
keywords = ["smtp", "async", "server", "parser", "PEG"]
edition = "2018"

# see crates.io/category_slugs
categories = [
    "email",
    "asynchronous",
    "network-programming",
    "parser-implementations",
]

[badges]
gitlab = { repository = "BrightOpen/BackYard/Samotop", branch = "develop" }
maintenance = { status = "actively-developed" }

[features]
default = ["rust-tls", "spf", "parser-peg", "smime", "delivery"]
delivery = ["samotop-delivery"]
smime = ["samotop-smime"]
spf = ["samotop-with-spf"]
rust-tls = ["samotop-with-rustls"]
native-tls = ["samotop-with-native-tls", "samotop-with-native-tls/vendored"]
parser-peg = ["samotop-parser"]
parser-nom = ["samotop-parser-nom"]

[dependencies]
log = "0.4"
bytes = "1.0"
pin-project = "1.0"
futures = "0.3"
async-std = "1.9"
regex = "1.4"
smol-timeout = "0.6"

[dependencies.samotop-core]
version = "0.12.0"
path = "../samotop-core"

[dependencies.samotop-parser]
version = "0.12.0"
path = "../samotop-parser"
optional = true

[dependencies.samotop-parser-nom]
version = "0.12.0"
path = "../samotop-parser-nom"
optional = true

[dependencies.samotop-with-spf]
version = "0.12.0"
path = "../samotop-with-spf"
optional = true

[dependencies.samotop-with-rustls]
version = "0.12.0"
path = "../samotop-with-rustls"
optional = true

[dependencies.samotop-with-native-tls]
version = "0.12.0"
path = "../samotop-with-native-tls"
optional = true

[dependencies.samotop-smime]
version="0.12.0"
path = "../samotop-smime"
optional = true

[dependencies.samotop-delivery]
version = "0.12.0"
path = "../samotop-delivery"
optional = true

[dev-dependencies]
futures-await-test = "0.3"
env_logger = "0.8"