-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 927 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 927 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
30
31
32
33
34
35
36
37
38
39
[workspace]
resolver = "3"
members = [ "tachyon/compute","tachyon/gpu"]
[workspace.package]
authors = ["Manish Kumar <manish@neocraft.tech>"]
edition = "2024"
homepage = "https://neocraft.tech/"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/neocrafttech/tachyon"
rust-version = "1.87.0"
version = "0.1.0"
[workspace.dependencies]
cargo-nextest = "0.9.1"
mimalloc = { version = "*", features = ["v3"] }
tokio = { version = "1.48.0", features = ["full"] }
thiserror = "2.0.17"
sha2 = "0.10.9"
rand = "0.9.2"
half = { version = "2.7.1", features = ["bytemuck", "num-traits", "serde", "std", "rand_distr"] }
indoc = "2.0.7"
arrow = "57.0.0"
dirs = "6.0.0"
criterion = { version = "0.8.1", features = ["html_reports"] }
tracing = "0.1"
tracing-subscriber = "0.3"
[profile.release]
opt-level = 3
codegen-units = 1
lto = true
[profile.bench]
opt-level = 3
codegen-units = 1
lto = true
debug = false