-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (28 loc) · 864 Bytes
/
Cargo.toml
File metadata and controls
33 lines (28 loc) · 864 Bytes
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
[package]
name = "can-dbc-pest"
version = "0.7.1"
description = "A Pest-based parser for the DBC format. The DBC format is used to exchange CAN network data."
authors = ["Yuri Astrakhan <YuriAstrakhan@gmail.com>"]
categories = ["embedded", "encoding", "parsing"]
edition = "2021"
exclude = ["/tests/*"]
keywords = ["dbc", "can", "automotive", "ecu"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oxibus/can-dbc-pest"
rust-version = "1.81"
[features]
default = ["encodings"]
encodings = ["dep:encoding_rs"]
[dependencies]
encoding_rs = { version = "0.8.35", optional = true }
pest = "2.8.3"
pest_derive = "2.8.3"
[dev-dependencies]
insta = "1.46.0"
test_each_file = "0.3.6"
[lints.rust]
unsafe_code = "forbid"
unused_qualifications = "warn"
[lints.clippy]
cargo = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }