mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
29 lines
806 B
TOML
29 lines
806 B
TOML
[package]
|
|
name = "deltachat-rpc-server"
|
|
version = "1.131.3"
|
|
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 = { path = "../deltachat-jsonrpc", default-features = false }
|
|
deltachat = { path = "..", default-features = false }
|
|
|
|
anyhow = "1"
|
|
env_logger = { version = "0.10.0" }
|
|
futures-lite = "2.0.0"
|
|
log = "0.4"
|
|
serde_json = "1.0.105"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tokio = { version = "1.33.0", features = ["io-std"] }
|
|
tokio-util = "0.7.9"
|
|
yerpc = { version = "0.5.2", features = ["anyhow_expose", "openrpc"] }
|
|
|
|
[features]
|
|
default = ["vendored"]
|
|
vendored = ["deltachat-jsonrpc/vendored"]
|