-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
41 lines (37 loc) · 1.01 KB
/
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
35
36
37
38
39
40
41
[package]
name = "structured"
version = "0.15.0"
authors = [
"Min Kim <[email protected]>",
"Min Shao <[email protected]>",
"Sehkone Kim <[email protected]>",
]
edition = "2021"
rust-version = "1.70"
description = "Data structures to handle large, structured data."
homepage = "https://github.com/petabi/structured"
repository = "https://github.com/petabi/structured"
license = "Apache-2.0"
exclude = ["./github"]
[badges]
codecov = { repository = "petabi/structured", service = "github" }
[dependencies]
arrow = "53"
chrono = { version = "0.4.31", default-features = false, features = ["serde"] }
csv-core = "0.1"
itertools = "0.13"
num-traits = "0.2"
ordered-float = { version = "4.1.0", default-features = false }
percent-encoding = "2.1"
regex = "1"
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.107", features = ["preserve_order"] }
statistical = "1"
strum = "0.26"
strum_macros = "0.26"
thiserror = "2"
[dev-dependencies]
ahash = "0.8"
serde_test = "1.0"
[lints.clippy]
pedantic = "warn"