-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Cargo.toml
45 lines (37 loc) · 1.19 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
[package]
name = "omnisette-server"
description = "An HTTP server wrapper for omnisette. Supports both V1 (Provision) and V3 of anisette servers."
version = "1.0.0-beta.1"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
omnisette = { git = "https://github.com/SideStore/apple-private-apis.git", features = ["async"] }
actix = "0.13"
actix-web = { version = "4", features = ["openssl"] }
openssl = { version = "0.10", features = ["vendored"] }
actix-web-actors = "4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
base64 = "0.21"
bytestring = "1.3"
parking_lot = "0.12"
clap = { version = "4.1", features = ["derive"] }
chrono = "0.4"
const_format = "0.2"
once_cell = "1.17"
log = "0.4"
simplelog = "0.12"
# dependencies required to manually create ADIProxyAnisetteProvider (used for identifier)
rand = "0.8"
hex = "0.4"
sha2 = "0.10"
uuid = { version = "1.3", features = ["v4", "fast-rng", "macro-diagnostics"] }
[dev-dependencies]
reqwest = "0.11"
plist = "1.4"
async-trait = "0.1"
awc = "3"
futures-util = { version = "0.3", features = [
"sink", # sink feature might not be required
] }