Another project
0

Configure Feed

Select the types of activity you want to include in your feed.

at main 576 B View raw
1[package] 2name = "bone-types" 3version.workspace = true 4edition.workspace = true 5license.workspace = true 6rust-version.workspace = true 7 8[dependencies] 9nalgebra = { workspace = true } 10serde = { workspace = true } 11slotmap = { workspace = true } 12thiserror = { workspace = true } 13tracing = { workspace = true, optional = true } 14tracing-subscriber = { workspace = true, optional = true } 15uom = { workspace = true } 16 17[dev-dependencies] 18insta = { workspace = true } 19ron = { workspace = true } 20 21[features] 22testing = ["dep:tracing", "dep:tracing-subscriber"] 23 24[lints] 25workspace = true