-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
58 lines (52 loc) · 1.29 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
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "simetry"
authors = ["Adnan Ademovic <adnanademovic100@gmail.com>"]
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/adnanademovic/simetry"
description = "Interface with telemetry of various racing and driving sims"
version = "0.2.3"
build = "build.rs"
[dependencies]
anyhow = "1.0.68"
async-trait = "0.1.68"
byteorder = "1.4.3"
once_cell = "1.17.0"
yaml-rust = "0.4.5"
bitmask = "0.5.0"
itertools = "0.10.5"
typename = "0.1.2"
log = "0.4.17"
uom = { version = "0.34.0", features = ["serde"] }
serde = { version = "1.0.157", features = ["derive"] }
serde_json = "1.0.96"
hyper = { version = "0.14.25", features = ["client", "http1", "http2", "tcp"] }
time = { version = "0.3.21", features = ["serde-human-readable"] }
[features]
unstable_generic_http_client = []
with_truck_simulator = []
with_r3e = []
default = ["with_r3e", "with_truck_simulator"]
[dependencies.tokio]
version = "1.24.1"
features = [
"macros",
"net",
"rt",
"rt-multi-thread",
"time",
]
[dependencies.windows]
version = "0.44.0"
features = [
"Win32",
"Win32_Foundation",
"Win32_System",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_UI_WindowsAndMessaging",
]
[build-dependencies]
bindgen = "0.66.1"