rerun-io--rerun
46 行
982 B
TOML
46 行
982 B
TOML
[package]
|
|
name = "re_byte_size"
|
|
authors.workspace = true
|
|
description = "Calculate the heap-allocated size of values at runtime."
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include.workspace = true
|
|
license.workspace = true
|
|
publish = true
|
|
readme = "README.md"
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
|
|
[features]
|
|
ecolor = ["dep:ecolor"]
|
|
egui = ["dep:egui", "ecolor"]
|
|
glam = ["dep:glam"]
|
|
macaw = ["dep:macaw"]
|
|
|
|
|
|
[dependencies]
|
|
re_byte_size_derive = { workspace = true }
|
|
|
|
arrow.workspace = true
|
|
half.workspace = true
|
|
parking_lot.workspace = true
|
|
smallvec.workspace = true
|
|
vec1.workspace = true # Small enough to always depend on it.
|
|
|
|
ecolor = { workspace = true, optional = true }
|
|
egui = { workspace = true, optional = true }
|
|
glam = { workspace = true, optional = true }
|
|
macaw = { workspace = true, optional = true }
|
|
|
|
|
|
[dev-dependencies]
|
|
insta.workspace = true
|