-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
41 lines (34 loc) · 1.05 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
[package]
name = "async-mavlink"
version = "0.1.4-alpha.0"
authors = ["wucke13 <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "An async adapter for mavlink conections"
readme = "README.md"
repository = "https://github.com/wucke13/async-mavlink"
categories = [ "asynchronous", "network-programming", "science::robotics" ]
keywords = [ "async", "mavlink", "subscribe", "sub" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.release]
pre-release-hook = [ "./pre-release-hook.sh" ]
[dependencies]
arc-swap = "1"
async-trait = "0.1"
blocking = "1.0"
futures = "0.3"
lazy_static = "1.4"
mavlink = "0.12"
thiserror = "1.0"
log = { version = "0.4", optional = true }
[dev-dependencies]
simple_logger = "4.2"
smol = "1"
log = "*"
[features]
default = ["parameter_protocol" ]
parameter_protocol = []
[badges]
github = { repository = "wucke13/async-mavlink" }
is-it-maintained-open-issues = { repository = "wucke13/async-mavlink" }
maintenance = { status = "actively-developed" }