-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
57 lines (52 loc) · 1.4 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
[package]
name = "steam-tradeoffer-manager"
version = "0.4.1"
edition = "2021"
description = "Makes Steam trade offers easy!"
authors = ["Julia"]
homepage = "https://github.com/juliarose/steam-tradeoffer-manager"
repository = "https://github.com/juliarose/steam-tradeoffer-manager"
license = "MIT"
keywords = ["steam", "trading", "tradeoffer"]
readme = "README.md"
exclude = ["/assets", ".*"]
[dependencies]
reqwest = { version = "0.11", features = ["json", "cookies"] }
reqwest-middleware = "0.1"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = { version = "1.0", features = ["raw_value"] }
serde_repr = "0.1"
tokio = { version = "1", features = ["rt"] }
async-fs = "1.5.0"
async-std = "1.12.0"
futures = "0.3.0"
strum = { version = "0.23.0", features = ["derive"] }
strum_macros = "0.23.0"
chrono = { version = "^0.4.27", features = ["serde"] }
num_enum = "0.5.0"
anyhow = "1.0"
lazy-regex = "2.2.0"
lazy_static = "1.4.0"
url = "2.2.0"
lfu_cache = "1.2.1"
scraper = "0.14.0"
thiserror = "1.0.30"
log = "0.4.0"
rand = "0.8"
directories = "^5.0"
steamid-ng = "1.0"
another-steam-totp = { version = "^0.3.5", features = ["reqwest"] }
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
dotenv = "0.15.0"
criterion = "0.3"
owo-colors = "3.5.0"
[[bench]]
name = "trade_offer_mapping"
harness = false
[[bench]]
name = "deserialize"
harness = false
[[bench]]
name = "hashset_vs_vec"
harness = false