-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (35 loc) · 881 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
40
41
42
43
44
45
46
[package]
name = "xal_examples"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
xal = { path = ".." }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
async-trait = "0.1.74"
env_logger = "0.10.1"
log = "0.4.20"
clap = { version = "4.4.8", features = ["derive"] }
chrono = "0.4.31"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
reqwest = { version = "0.11", features = ["json"] }
# Optional dependencies
wry = { version = "0.34.2", optional = true }
[features]
webview = ["wry"]
[[bin]]
name = "auth_cli"
[[bin]]
name = "auth_azure"
[[bin]]
name = "auth_minecraft"
[[bin]]
name = "auth_halo"
[[bin]]
name = "auth_titlehub"
[[bin]]
name = "xbl_signed_request"
[[bin]]
name = "auth_webview"
required-features = ["webview"]