-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
57 lines (49 loc) · 1.62 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
[package]
name = "ping-viewer-next"
version = "0.0.0"
edition = "2021"
authors = ["Raul Victor Trombin <[email protected]>"]
description = "This crate serves as the entry point for embedding applications using Rust on Blue Robotics's Ping devices family"
repository = "https://github.com/bluerobotics/ping-viewer-next"
license = "MIT"
[dependencies]
actix = "0.13.3"
actix-cors = "0.7.0"
actix-web = "4.9.0"
bluerobotics-ping = "0.3.3"
actix-web-actors = "4.3.0"
chrono = "0.4.38"
clap = {version = "4.5.17", features = ["derive"] }
lazy_static = "1.5.0"
mime_guess = "2.0.4"
paperclip = { version = "0.9.1" , features = ["actix4", "swagger-ui", "uuid"] }
serde = { version = "1.0.210", features = ["derive"] }
regex = "1.10.6"
rust-embed = "8.4.0"
serde_json = "1.0.128"
tokio = { version = "1.40.0", features = ["full"] }
tokio-serial = "5.4.4"
tracing = { version = "0.1.40", features = ["log", "async-await"] }
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-appender = "0.2.3"
tracing-tracy = {version = "0.11.0", features = ["ondemand"] }
udp-stream = "0.0.12"
uuid = { version = "1.10.0", features = ["serde"] }
validator = "0.18.1"
thiserror = "1.0.63"
shellexpand = "3.1"
tauri = { version = "1.7.2", optional = true, features = ["shell-open"] }
[build-dependencies]
vergen-gix = { version = "1.0.1", default-features = false, features = ["build", "cargo"] }
[lib]
name = "ping_viewer_next"
path = "src/lib.rs"
[[bin]]
name = "ping-viewer-next"
path = "src/main.rs"
[features]
default = []
desktop-app = ["tauri", "build-frontend"]
build-frontend = ["embed-frontend"]
embed-frontend =[]