-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
85 lines (82 loc) · 2.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
name = "igdb-rs"
version = "0.2.0"
authors = ["Carlos Landeras"]
edition = "2018"
license = "Apache-2.0/MIT"
repository = "https://github.com/CarlosLanderas/igdb-rs"
homepage = "https://github.com/CarlosLanderas/igdb-rs"
documentation = "https://docs.rs/igdb-rs"
description = "IGDB - Video Game Database Api"
keywords = ["igdb", "videogames", "database", "api", "client"]
categories = ["games", "api-bindings", "asynchronous"]
readme = "README.md"
[dependencies]
async-std = "0.99.4"
surf = "1.0.2"
serde_derive = "1.0.99"
serde_json = "1.0.40"
serde = "1.0.99"
serde_repr = "0.1.5"
http = "0.1.18"
url = "2.1.0"
log = "0.4.8"
[dev-dependencies]
femme = "1.2.0"
[[example]]
name = "search-first-game-by-name"
path = "examples/search_first_game_by_name.rs"
[[example]]
name = "search-games-by-name"
path = "examples/search_games_by_name.rs"
[[example]]
name = "game-media-download"
path = "examples/game_media_download.rs"
[[example]]
name = "game-media-read"
path = "examples/game_media_read.rs"
[[example]]
name = "request-builder-multiplayer"
path = "examples/request_builder_multiplayer.rs"
[[example]]
name = "request-builder-game"
path = "examples/request_builder_game.rs"
[[example]]
name = "game-engine-info"
path = "examples/game_engine_info.rs"
[[example]]
name = "game-video-urls"
path = "examples/game_video_urls.rs"
[[example]]
name = "game-platforms"
path = "examples/game_platforms.rs"
[[example]]
name ="game-platforms-logos"
path = "examples/game_platforms_logos.rs"
[[example]]
name = "game-release-date"
path = "examples/game_release_date.rs"
[[example]]
name = "game-characters"
path = "examples/game_characters.rs"
[[example]]
name = "logging"
path = "examples/logging.rs"
[[example]]
name = "game-rating"
path = "examples/game_rating.rs"
[[example]]
name = "game-theme"
path = "examples/game_theme.rs"
[[example]]
name = "franchise-games"
path = "examples/franchise_games.rs"
[[example]]
name = "game-age-rating"
path = "examples/game_age_rating.rs"
[[example]]
name = "player-perspectives"
path = "examples/player_perspectives.rs"
[[example]]
name = "game-characters-mugshot"
path = "examples/game_characters_mugshot.rs"