-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (31 loc) · 826 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
24
25
26
27
28
29
30
31
32
33
[package]
name = "akinator-rs"
authors = ["Tom-the-Bomb"]
description = "A simple wrapper around the undocumented Akinator API"
version = "0.1.13"
edition = "2021"
license = "MIT"
readme = "README.md"
documentation = "https://docs.rs/akinator-rs/latest/akinator_rs/"
repository = "https://github.com/Tom-the-Bomb/akinator-rs"
homepage = "https://github.com/Tom-the-Bomb/akinator-rs"
keywords = [
"akinator-rs",
"akinator",
"async",
"game",
"api",
]
categories = [
"asynchronous",
"games",
]
[dev-dependencies]
tokio = { version = "1.20", features = ["macros"] }
[dependencies]
regex = "1.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
lazy_static = "1.4"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls-webpki-roots"] }