-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
71 lines (63 loc) · 2.25 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
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "mavlink-server"
version = "0.1.0"
edition = "2021"
authors = ["João Antônio Cardoso <[email protected]>", "Patrick José Pereira <[email protected]>"]
build = "build.rs"
[lib]
name = "mavlink_server"
path = "src/lib/mod.rs"
bench = false
[[bench]]
name = "callbacks_bench"
harness = false
[[bin]]
name = "mavlink-server"
path = "src/main.rs"
bench = false
[dependencies]
anyhow = "1"
arc-swap = "1.7"
async-trait = "0.1.81"
axum = { version = "0.7.5", features = ["ws"] }
bytes = { version = "1.7", features = ["serde"] }
byteorder = "1.5.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
futures = "0.3"
include_dir = "0.7.4"
indexmap = { version = "2.5.0", features = ["serde"] }
json5 = "0.4.1"
lazy_static = "1.5.0"
mavlink = { default-features = false, features = ["std", "ardupilotmega", "serde", "tokio-1"], git = "https://github.com/mavlink/rust-mavlink", hash = "5f2ecbe8" }
mavlink-codec = { git = "https://github.com/bluerobotics/rust-mavlink-codec", branch = "master" }
regex = "1.10.6"
serde = { version = "1", features = ["rc"] }
serde_derive = "1.0.210"
serde_json = "1.0.128"
shellexpand = "3.1"
tokio = { version = "1", features = ["full"] }
tokio-serial = "5.4.4"
tokio-util = { version = "0.7", features = [ "codec", "net" ] }
once_cell = "1.20"
url = { version = "2.5.2", features = ["serde"] }
uuid = { version = "1", features = ["v5", "v4", "serde"] }
mime_guess = "2.0.5"
tracing = { version = "0.1.40", features = ["log", "async-await"] }
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
tracing-log = "0.2.0"
# This is a custom revision adding file name suffix on top of tracing-appender-0.2.2" "0.2.2", but compatible with the current tracing version.
# Reference: https://github.com/tokio-rs/tracing/issues/2441
tracing-appender = { git = "https://github.com/joaoantoniocardoso/tracing", branch = "tracing-appender-0.2.2-with-filename-suffix" }
toml = "0.8.19"
zenoh = "1.0.1"
ringbuffer = "0.15.0"
[dev-dependencies]
criterion = "0.5"
tokio = { version = "1", features = ["full"] }
[build-dependencies]
vergen-gix = { version = "1.0.2", default-features = false, features = ["build", "cargo"] }
[profile.profiling]
inherits = "release"
debug = 1
jemalloc = false