37 lines
637 B
TOML
37 lines
637 B
TOML
|
|
[package]
|
|
name = "pim-simulator"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
|
|
[[bin]]
|
|
name = "pim-simulator"
|
|
|
|
[lib]
|
|
name = "pimcore"
|
|
path = "src/lib/pimcore.rs"
|
|
|
|
[features]
|
|
default = []
|
|
tracing = []
|
|
profile_time = ["dep:plotly", "dep:comfy-table", "dep:statrs"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
aligned-vec = "0.6.4"
|
|
anyhow = "1"
|
|
clap = { version = "4", features = ["derive"] }
|
|
glob = "0"
|
|
hex = "0"
|
|
paste = "1"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
statrs = {version="0.16", optional=true}
|
|
comfy-table = {version="7.1", optional=true}
|
|
plotly = {version="0.8", optional=true}
|
|
rayon = "1.12.0"
|
|
faer = "0.24.0"
|
|
faer-traits = "0.24.0"
|