-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
50 lines (43 loc) · 1.2 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
[package]
name = "a653rs"
version = "0.6.0"
edition = "2021"
authors = ["Sven Friedrich <sven.friedrich@dlr.de>"]
license = "MIT OR Apache-2.0"
keywords = [
"api",
"arinc",
"avionics",
"embedded",
"no_std",
]
description = "Arinc653 abstraction library for hypervisor independent partition programming"
categories = [
"aerospace",
"api-bindings",
"embedded",
"no-std"
]
repository = "https://github.com/DLR-FT/a653rs/"
[features]
default = ["strum", "serde"]
macros = [ "dep:a653rs_macros" ]
serde = ["dep:serde"]
strum = ["dep:strum"]
bindings = []
[dependencies]
serde = { version = "1.0", features = ["derive"], default-features = false, optional = true }
strum = { version = "0.26", features = ["derive"], default-features = false, optional = true }
a653rs_macros = { version = "0.6.0", path = "macros", optional = true }
[dev-dependencies]
a653rs_macros = { version = "0.6.0", path = "macros" }
[workspace]
members = [ "macros" ]
[[example]]
name = "partition"
required-features = ["bindings"]
[package.metadata.cargo-all-features]
# Only focus on features in [features] block (otherwise we get duplicate features)
skip_optional_dependencies = true
[package.metadata."docs.rs"]
all-features = true