-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (31 loc) · 1009 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
[package]
name = "MSFS-2020-GPS-Link"
version = "0.3.2"
authors = ["Mihai Dinculescu <[email protected]>"]
edition = "2021"
description = "MSFS 2020 GPS Link"
license = "MIT"
default-run = "msfs-2020-gps-link"
[[bin]]
name = "msfs-2020-gps-link"
path = "src/main.rs"
[dependencies]
actix = "0.13"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
opentelemetry_api = "0.18"
opentelemetry-jaeger = { version = "0.17" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serialport = "4.2"
simconnect-sdk = { version = "0.2", features = ["derive"] }
tauri = { version = "1.2", features = ["api-all"] }
tokio = { version = "1.27", features = ["sync", "time"] }
tracing = "0.1"
tracing-log = "0.1"
tracing-opentelemetry = "0.18"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[build-dependencies]
tauri-build = { version = "1.2", features = [] }
[features]
custom-protocol = ["tauri/custom-protocol"]
default = ["custom-protocol"]