-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
48 lines (43 loc) · 1.24 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
42
43
44
45
46
47
48
[workspace]
members = ["csvp"]
[workspace.dependencies]
a1 = { version = "1.0.1", features = ["serde"] }
serde = { version = "1", features = ["derive", "rc"] }
[package]
authors = ["Patrick Carroll <patrick@patrickomatic.com>"]
description = "Compile csv++ source code to a target spreadsheet format"
homepage = "https://github.com/patrickomatic/csv-plus-plus"
keywords = ["csv++", "csvpp", "csv", "spreadsheet"]
license = "MIT"
name = "csvpp"
repository = "https://github.com/patrickomatic/csv-plus-plus"
version = "0.8.0"
edition = "2021"
[dependencies]
a1 = { workspace = true }
bincode = "1.3.3"
chrono = { version = "^0.4.31", features = ["serde"] }
clap = { version = "^4", features = ["derive"] }
colored = "^2.0"
csv = "1"
csvp = { version = "^0.2", path = "./csvp" }
env_logger = "^0.11"
google-drive3 = "^6.0"
google-sheets4 = "^6.0"
home = "^0.5"
log = "^0.4"
petgraph = "^0.6"
rayon = "^1.8"
regex = "^1.10"
semver = "^1"
serde = { workspace = true }
serde_json = "^1"
tokio = { version = "^1.35", features = ["rt"] }
umya-spreadsheet = "^2.1"
[dev-dependencies]
criterion = { version = "^0.5", features = ["html_reports"] }
pprof = { version = "0.13", features = ["criterion", "flamegraph"] }
rand = "^0.8"
[[bench]]
name = "eval_fill"
harness = false