-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (26 loc) · 725 Bytes
/
Cargo.toml
File metadata and controls
31 lines (26 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "forvo-cli"
version = "0.1.3"
authors = ["Francesco Urbani <francescourbanidue@gmail.com>"]
edition = "2018"
readme = "README.md"
# license-file = "LICENSE.txt"
license = "MIT"
description = "Play Forvo pronunciations directly from the terminal"
repository = "https://github.com/urbanij/forvo-cli/"
documentation = "https://docs.rs/forvolib"
keywords = ["forvo", "pronunciations"]
exclude = ["LICENSE.txt"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# soup = "0.5.0"
reqwest = "0.9.24"
regex = "1.4.3"
argparse = "0.2.2"
# exitcode = "1.1.2"
[lib]
name = "forvolib"
path = "src/lib.rs"
[[bin]]
name = "forvo-cli"
path = "src/bin.rs"