-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
51 lines (45 loc) · 1.21 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
[package]
name = "ecal"
version = "0.2.0"
authors = [
"Chip Collier <[email protected]>",
"Denys Zariaiev <[email protected]>",
"Massimo Innocentini <[email protected]>",
"Ignat Georgiev <[email protected]>"
]
edition = "2018"
license = "Apache-2.0"
repository = "https://github.com/kopernikusauto/ecal-rs/"
publish = ["crates-io"]
description = "Bindings to the eCAL library"
keywords = ["ecal"]
[features]
default = ["derive", "use_prost"]
derive = ["ecal-derive"]
use_protobuf = ["protobuf"]
use_prost = ["prost"]
use_msgpack = ["rmp", "rmpv", "rmp-serde", "serde"]
use_capnp = ["capnp"]
[dependencies]
anyhow = "1.0"
thiserror = "1"
log = "0.4"
prost = { version="0.11", optional=true }
protobuf = { version="2", optional=true }
rmp = { version="0.8", optional=true }
rmpv = { version="1.0", optional=true }
rmp-serde = { version="1.1", optional=true }
serde = { version="1.0", optional=true }
capnp = { version="0.16.0", optional=true }
[target.'cfg(windows)'.dependencies]
winapi = { version="0.3", features=["iphlpapi"]}
[dependencies.ecal-derive]
version = "0.1"
path = "./ecal-derive"
optional = true
[dev-dependencies]
env_logger = "0.9"
[workspace]
members = [
"demo"
]