mirror of
https://github.com/chatmail/core.git
synced 2026-04-17 21:46:35 +03:00
Bumps [futures](https://github.com/rust-lang/futures-rs) from 0.3.21 to 0.3.24. - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.21...0.3.24) --- updated-dependencies: - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[package]
|
|
name = "deltachat-jsonrpc"
|
|
version = "1.93.0"
|
|
description = "DeltaChat JSON-RPC API"
|
|
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
|
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.6.1" }
|
|
futures = { version = "0.3.24" }
|
|
serde_json = "1.0.85"
|
|
yerpc = { version = "^0.3.1", features = ["anyhow_expose"] }
|
|
typescript-type-def = { version = "0.5.3", features = ["json_value"] }
|
|
tokio = { version = "1.19.2" }
|
|
|
|
# optional dependencies
|
|
axum = { version = "0.5.9", optional = true, features = ["ws"] }
|
|
env_logger = { version = "0.9.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.19.2", features = ["full", "rt-multi-thread"] }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
webserver = ["env_logger", "axum", "tokio/full", "yerpc/support-axum"]
|