mirror of
https://github.com/chatmail/core.git
synced 2026-04-18 22:16:30 +03:00
Bumps [typescript-type-def](https://github.com/dbeckwith/rust-typescript-type-def) from 0.5.4 to 0.5.5. - [Release notes](https://github.com/dbeckwith/rust-typescript-type-def/releases) - [Changelog](https://github.com/dbeckwith/rust-typescript-type-def/blob/master/CHANGELOG.md) - [Commits](https://github.com/dbeckwith/rust-typescript-type-def/compare/v0.5.4...v0.5.5) --- updated-dependencies: - dependency-name: typescript-type-def dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
42 lines
1.1 KiB
TOML
42 lines
1.1 KiB
TOML
[package]
|
|
name = "deltachat-jsonrpc"
|
|
version = "1.102.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.25" }
|
|
serde_json = "1.0.87"
|
|
yerpc = { version = "^0.3.1", features = ["anyhow_expose"] }
|
|
typescript-type-def = { version = "0.5.5", features = ["json_value"] }
|
|
tokio = { version = "1.21.2" }
|
|
sanitize-filename = "0.4"
|
|
walkdir = "2.3.2"
|
|
|
|
# optional dependencies
|
|
axum = { version = "0.5.17", optional = true, features = ["ws"] }
|
|
env_logger = { version = "0.9.1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.21.2", features = ["full", "rt-multi-thread"] }
|
|
|
|
|
|
[features]
|
|
default = []
|
|
webserver = ["env_logger", "axum", "tokio/full", "yerpc/support-axum"]
|