27 lines
748 B
TOML
27 lines
748 B
TOML
[package]
|
|
name = "jmap-client"
|
|
description = "JMAP client library for Rust"
|
|
version = "0.1.0"
|
|
edition = "2018"
|
|
authors = [ "Stalwart Labs Ltd. <hello@stalw.art>"]
|
|
license = "Apache-2.0 OR MIT"
|
|
repository = "https://github.com/stalwartlabs/jmap-client"
|
|
homepage = "https://github.com/stalwartlabs/jmap-client"
|
|
keywords = ["jmap", "email", "mime", "mail", "e-mail"]
|
|
categories = ["email"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
chrono = { version = "0.4", features = ["serde"]}
|
|
reqwest = { version = "0.11", default-features = false, features = ["stream", "rustls-tls"]}
|
|
futures-util = "0.3"
|
|
async-stream = "0.3.3"
|
|
base64 = "0.13"
|
|
|
|
[features]
|
|
debug = []
|
|
|
|
[profile.bench]
|
|
debug = true |