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.25 to 0.3.26. - [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.25...0.3.26) --- updated-dependencies: - dependency-name: futures dependency-type: direct:production update-type: version-update:semver-patch ... 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.107.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.26" }
|
|
serde_json = "1.0.91"
|
|
yerpc = { version = "^0.3.1", features = ["anyhow_expose"] }
|
|
typescript-type-def = { version = "0.5.5", features = ["json_value"] }
|
|
tokio = { version = "1.25.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.25.0", features = ["full", "rt-multi-thread"] }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
webserver = ["env_logger", "axum", "tokio/full", "yerpc/support-axum"]
|