-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (27 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
29 lines (27 loc) · 740 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
[package]
name = "gongbi"
version = "0.1.0"
edition = "2021"
description = "A data visualization crate based on plotters"
authors = ["duskmoon (Campbell He) <kp.campbell.he@duskmoon314.com>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/duskmoon314/gongbi"
[dependencies]
anyhow = "1.0.94"
derive_builder = "0.20.2"
derive_more = { version = "1.0.0", features = ["from"] }
dyn-clone = "1.0.17"
num-traits = "0.2.19"
plotters = "0.3.7"
polars = { version = "0.45.1", features = ["csv", "partition_by"] }
thiserror = "2.0.8"
# thiserror = "1.0.63"
typed-builder = "0.20.0"
[dev-dependencies]
# trybuild = "1.0.99"
polars = { version = "0.45.1", features = [
"dtype-u8",
"dtype-u16",
"lazy",
"parquet",
] }