-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
23 lines (21 loc) · 953 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "deepl-api"
description = "Bindings and a commandline tool for the DeepL REST API (https://www.deepl.com/docs-api/)"
version = "0.4.3"
authors = ["Martin Gruner <mg.pub@gmx.net>"]
edition = "2021"
repository = "https://github.com/mgruner/deepl-api-rs/"
documentation = "https://mgruner.github.io/deepl-api-rs-docs/deepl_api/index.html"
license = "MIT OR Apache-2.0"
keywords = ["deepl", "api", "translation", "ai", "machine-learning"]
categories = ["command-line-utilities", "api-bindings", "internationalization", "text-processing"]
[dependencies]
error-chain = "0.12"
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
assert_cmd = "2.0"
assert_fs = "1.0"
predicates = "2.1"