mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
29 lines
849 B
TOML
29 lines
849 B
TOML
[package]
|
|
name = "deltachat-rpc-server"
|
|
version = "2.48.0-dev"
|
|
description = "DeltaChat JSON-RPC server"
|
|
edition = "2021"
|
|
readme = "README.md"
|
|
license = "MPL-2.0"
|
|
|
|
keywords = ["deltachat", "chat", "openpgp", "email", "encryption"]
|
|
categories = ["cryptography", "std", "email"]
|
|
|
|
[dependencies]
|
|
deltachat-jsonrpc = { workspace = true }
|
|
deltachat = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
futures-lite = { workspace = true }
|
|
log = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["io-std"] }
|
|
tokio-util = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
|
yerpc = { workspace = true, features = ["anyhow_expose", "openrpc"] }
|
|
|
|
[features]
|
|
default = ["vendored"]
|
|
vendored = ["deltachat-jsonrpc/vendored"]
|