-
Notifications
You must be signed in to change notification settings - Fork 15
/
Cargo.toml
53 lines (48 loc) · 1.41 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
[package]
name = "scryfall"
version = "0.17.9"
authors = ["Mendess2526 <[email protected]>"]
edition = "2021"
description = "A wrapper around the scryfall magic the gathering api"
license = "MIT"
repository = "https://github.com/mendess/scryfall-rs"
readme = "README.md"
keywords = ["mtg", "Magic", "API", "Scryfall"]
categories = ["api-bindings", "games"]
[package.metadata.docs.rs]
features = ["unknown_variants"]
[features]
default = ["bulk_caching"]
bulk_caching = ["dep:heck"]
unknown_variants = []
unknown_variants_slim = []
bin = ["dep:tokio"]
[dependencies]
async-trait = "0.1.81"
cfg-if = "1"
chrono = { version = "0.4", features = ["serde"] }
futures = "0.3.30"
heck = { version = "0.5", optional = true }
httpstatus = "0.1"
itertools = "0.13"
once_cell = "1"
percent-encoding = "2"
reqwest = {version = "0.12.5", features = ["json" ,"blocking"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_urlencoded = "0.7"
static_assertions = "1"
thiserror = "1"
tinyvec = "1"
url = { version = "2", features = ["serde"] }
uuid = { version = "1", features = ["serde"] }
tokio = { version = "1", features = ["macros", "rt-multi-thread"], optional = true }
[dev-dependencies]
strum = { version = "0.26", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tokio-test = "0.4.4"
static_assertions = "1.1.0"
[[bin]]
name = "search"
path = "src/bin/search.rs"
required-features = ["bin"]