-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
34 lines (30 loc) · 948 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
[package]
name = "urdf-rs"
version = "0.9.0"
authors = ["Takashi Ogura <[email protected]>"]
edition = "2021"
description = "URDF parser"
license = "Apache-2.0"
keywords = ["robotics", "robot", "ros", "urdf"]
categories = ["data-structures", "parsing"]
repository = "https://github.com/openrr/urdf-rs"
# Note: serde is public dependency.
[dependencies]
quick-xml = { version = "0.37", features = ["overlapped-lists", "serialize"] }
regex = "1.4.2"
RustyXML = "0.3.0"
serde = { version = "1.0.118", features = ["derive"] }
serde-xml-rs = "0.6.0"
thiserror = "2.0.0"
[dev-dependencies]
assert_approx_eq = "1"
[lints]
workspace = true
[workspace.lints.rust]
missing_debug_implementations = "warn"
# missing_docs = "warn" # TODO
rust_2018_idioms = "warn"
single_use_lifetimes = "warn"
unreachable_pub = "warn"
[workspace.lints.clippy]
lint_groups_priority = { level = "allow", priority = 1 } # https://github.com/rust-lang/rust-clippy/issues/12920