-
Notifications
You must be signed in to change notification settings - Fork 32
/
Cargo.toml
39 lines (35 loc) · 914 Bytes
/
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
[package]
name = "dbc-codegen"
version = "0.3.0"
authors = [
"Pascal Hertleif <[email protected]>",
"Marcel Buesing <[email protected]>",
"Andres Vahter <[email protected]>",
]
edition = "2021"
description = "CAN DBC code-gen for embedded Rust"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/technocreatives/dbc-codegen"
homepage = "https://github.com/technocreatives/dbc-codegen"
rust-version = "1.78.0"
[features]
std = []
[dependencies]
can-dbc = "6.0.0"
anyhow = "1.0.68"
heck = "0.4.0"
typed-builder = "0.18.0"
embedded-can = "0.4.1"
[workspace]
members = [
".",
"dbc-codegen-cli",
"testing/rust-integration",
"testing/can-embedded",
"testing/can-messages",
"testing/cantools-messages",
]
# Indicates features that docs.rs should enable when building documentation.
[package.metadata.docs.rs]
features = ["std"]