forked from mgruner/deepl-api-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
22 lines (20 loc) · 897 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
[package]
name = "deepl-api"
description = "Bindings and a commandline tool for the DeepL REST API (https://www.deepl.com/docs-api/)"
version = "0.3.1"
authors = ["Martin Gruner <[email protected]>"]
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 = "3.1", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
[dev-dependencies]
assert_cmd = "1.0"
assert_fs = "1.0"
predicates = "1.0"