-
Notifications
You must be signed in to change notification settings - Fork 28
/
Cargo.toml
46 lines (41 loc) · 1.28 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
[package]
name = "mavlink2rest"
version = "0.11.23"
description = "A simple REST API for MAVLink"
readme = "README.md"
license = "MIT"
authors = ["Patrick José Pereira <[email protected]>"]
edition = "2018"
path = "build.rs"
documentation = "https://github.com/patrickelectric/mavlink2rest"
homepage = "https://github.com/patrickelectric/mavlink2rest"
repository = "https://github.com/patrickelectric/mavlink2rest"
[[bin]]
bench = false
path = "src/main.rs"
name = "mavlink2rest"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix = "0.10"
actix-cors = "0.5"
actix-files = "0.6.2"
actix-rt = "2.1"
actix-web = "3.3"
actix-web-actors = "3.0"
chrono = { version = "0.4", features = ["serde"] }
clap = "2.33.3"
derivative = "2.1.1"
include_dir = "0.7"
lazy_static = "1.4.0"
log = "0.4"
env_logger = "0.8"
mavlink = { version = "0.10.9", features = [ "ardupilotmega", "emit-extensions"] }
paperclip = { version = "0.8", features = ["actix3", "v3", "paperclip-actix", "swagger-ui"] }
regex = "1"
serde = "1.0.115"
serde_derive = "1.0.115"
serde_json = "1.0.57"
json5 = "0.4.1"
[build-dependencies]
reqwest = {version = "0.11", default-features = false, features = ["blocking", "rustls-tls"]}
vergen = { version = "7", features = ["git"] }