-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (30 loc) · 756 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (30 loc) · 756 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
32
33
34
[package]
name = "imdb-api"
version = "0.1.0"
edition = "2021"
authors = ["rajdeenoo"]
description = "Rust IMDB client using the IMDB JSON web service"
license = "MIT"
repository = "https://github.com/raj/rust-imdb-api"
keywords = ["imdb", "api", "movie", "tv"]
categories = ["api-bindings", "web-programming::http-client"]
[dependencies]
reqwest = { version = "0.12", features = ["json"] }
url = "2.5"
urlencoding = "2.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.22"
regex = "1.10"
chrono = "0.4"
thiserror = "1.0"
[dev-dependencies]
tokio = { version = "1.35", features = ["full"] }
[lib]
name = "imdb_api"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"