-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (33 loc) · 1.06 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
[package]
name = "stellantis-connected-car"
version = "0.1.0"
edition = "2021"
authors = ["Sven Fabricius <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mr-sven/stellantis-connected-car"
description = "Rust implementation of Stellantis Connected Car API"
categories = ["api-bindings"]
keywords = ["stellantis", "connected_car"]
[dependencies]
# used for config
serde = { version = "1.0", features = ["derive", "rc"] }
serde_yaml = "0.9"
# used to open apk
zip = { version = "0.6", default-features = false, features = ["deflate"] }
# find properties
regex = "1.7"
# used for apk properties file
serde_json = "1.0"
# extract client certificate
openssl = "0.10"
# read apk resources
arsc = "^0.1"
# static hash maps
phf = { version = "0.11", features = ["macros"] }
# making web requests
reqwest = { version = "0.11", features = ["blocking", "json", "native-tls"] }
chrono = { version = "0.4", features = ["serde", "rustc-serialize"] }
serde_with = "2.3"
[patch.crates-io]
arsc = { git = 'https://github.com/mr-sven/arsc.git' }