mirror of
https://github.com/chatmail/core.git
synced 2026-04-18 05:56:31 +03:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.22.0 to 1.23.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.22.0...tokio-1.23.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.0 KiB
TOML
41 lines
1.0 KiB
TOML
[package]
|
|
name = "deltachat-jsonrpc"
|
|
version = "1.104.0"
|
|
description = "DeltaChat JSON-RPC API"
|
|
edition = "2021"
|
|
default-run = "deltachat-jsonrpc-server"
|
|
license = "MPL-2.0"
|
|
|
|
[[bin]]
|
|
name = "deltachat-jsonrpc-server"
|
|
path = "src/webserver.rs"
|
|
required-features = ["webserver"]
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
deltachat = { path = ".." }
|
|
num-traits = "0.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tempfile = "3.3.0"
|
|
log = "0.4"
|
|
async-channel = { version = "1.8.0" }
|
|
futures = { version = "0.3.25" }
|
|
serde_json = "1.0.89"
|
|
yerpc = { version = "^0.3.1", features = ["anyhow_expose"] }
|
|
typescript-type-def = { version = "0.5.5", features = ["json_value"] }
|
|
tokio = { version = "1.23.0" }
|
|
sanitize-filename = "0.4"
|
|
walkdir = "2.3.2"
|
|
|
|
# optional dependencies
|
|
axum = { version = "0.6.1", optional = true, features = ["ws"] }
|
|
env_logger = { version = "0.10.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.23.0", features = ["full", "rt-multi-thread"] }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
webserver = ["env_logger", "axum", "tokio/full", "yerpc/support-axum"]
|