24 lines
622 B
TOML
24 lines
622 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 = "0.11"
|
|
ece = "2.2"
|
|
|
|
#[dev-dependencies]
|
|
|
|
[profile.bench]
|
|
debug = true |