forked from juliarose/steam-tradeoffer-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (36 loc) · 1.15 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
[package]
name = "steam-tradeoffer-manager"
version = "0.0.0"
edition = "2021"
description = "Makes Steam trade offers easy again!"
authors = ["Julia", "Morb0"]
homepage = "https://github.com/Morb0/steam-tradeoffer-manager"
repository = "https://github.com/Morb0/steam-tradeoffer-manager"
license = "MIT"
keywords = ["steam", "trading", "tradeoffer"]
readme = "README.md"
[dependencies]
reqwest = { version = "0.12", features = ["json", "cookies"] }
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 = "2.1"
async-std = "1.12.0"
futures = "0.3.0"
strum = { version = "0.26", features = ["derive"] }
strum_macros = "0.26"
chrono = { version = "^0.4.27", features = ["serde"] }
num_enum = "0.7"
anyhow = "1.0"
lazy-regex = "3.3"
lazy_static = "1.4.0"
url = "2.2.0"
lfu_cache = "1.2.1"
scraper = "0.22"
thiserror = "2"
log = "0.4.0"
rand = "0.8"
directories = "^5.0"
steamid-ng = "1.0"
another-steam-totp = { git = "https://github.com/Morb0/another-steam-totp.git", rev = "3181971bd2677b06a242a65fca2484bd5274ed73", features = ["reqwest"] }