-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (35 loc) · 936 Bytes
/
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
[package]
name = "xal"
version = "0.1.2"
edition = "2018"
description = "Xbox Authentication library"
license = "MIT"
repository = "https://github.com/OpenXbox/xal-rs"
homepage = "https://openxbox.org"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "0.1.74"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
cvlib = "0.1.2"
chrono = "0.4"
uuid = { version = "1", features = ["v4", "serde"] }
thiserror = "1.0.37"
url = "2.3.1"
http = "0.2.9"
log = "0.4.20"
p256 = "0.13.2"
base64ct = { version = "1.6.0", features = ["std"] }
sha2 = "0.10.8"
rand = "0.8.5"
oauth2 = "4.4.2"
nt-time = { version = "0.6.5", features = ["chrono"] }
[dev-dependencies]
hex-literal = "0.3.4"
tokio = { version = "1", features = ["macros"] }
tokio-test = "0.4.3"
[workspace]
members = [
"examples"
]