forked from aeronautical-informatics/openTAWS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
54 lines (45 loc) · 1.67 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
[package]
name = "opentaws"
version = "0.1.0"
authors = [
"Wanja Zaeske <[email protected]>",
"Janick Beck <[email protected]>",
"Umut Durak <[email protected]>",
]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "An open source TAWS"
documentation = "https://aeronautical-informatics.github.io/openTAWS/"
readme = "README.md"
repository = "https://github.com/aeronautical-informatics/openTAWS"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
codecov = { repository = "aeronautical-informatics/openTAWS", branch = "main" }
github = { repository = "aeronautical-informatics/openTAWS" }
is-it-maintained-open-issues = { repository = "aeronautical-informatics/openTAWS" }
maintenance = { status = "actively-developed" }
[features]
default = ["use-serde"]
use-serde = ["serde", "uom/use_serde"]
[dependencies]
casey = "0.3"
lazy_static = "1"
uom = { version = "0", default-features = false, features = [ "f64", "si", "use_serde" ] }
ringbuffer = "0.4"
serde = { version = "1.0", default-features = false, features = ["derive"], optional = true }
[dev-dependencies]
arbitrary = { version = "1", features = ["derive"] }
cucumber_rust = {version = "0.8", features = [ "macros" ] }
futures = "0"
rand = "*"
rand_pcg = "*"
uom = { version = "*", features = [ "f64", "si", "std", "use_serde" ] }
# for examples/flightgear
async-tungstenite = { version = "*", features = [ "async-std-runtime" ] }
serde = { version = "^1.0", features = [ "derive" ] }
serde_json = "1.0"
smol = "^1.0"
[[test]]
name = "cucumber"
harness = false # Allows Cucumber to print output instead of libtest
path = "tests/cucumber.rs"