-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
52 lines (42 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
42
43
44
45
46
47
48
49
50
51
52
[package]
name = "columnar"
version = "0.2.2"
authors = ["Frank McSherry <[email protected]>"]
description = "Conversion from arrays of complex structs to simple structs of arrays"
edition = "2021"
# These URLs point to more information about the repository
documentation = "http://github.com/frankmcsherry/columnar"
homepage = "http://github.com/frankmcsherry/columnar"
repository = "https://github.com/frankmcsherry/columnar.git"
license = "MIT"
[workspace]
members = ["columnar_derive"]
[dependencies]
rmp-serde = "1.3.0"
bincode = "1.3.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
bytemuck = "1.20"
columnar_derive = { path = "columnar_derive", version = "0.2" }
[dev-dependencies]
bencher = "0.1.5"
[profile.test]
opt-level = 2
overflow-checks = false
incremental = false
[profile.bench]
debug = "full"
lto = true
codegen-units = 1
[[bench]]
name = "bench"
harness = false
[[bench]]
name = "serde"
harness = false
[[bench]]
name = "ops"
harness = false
[[bench]]
name = "simd"
harness = false