-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 900 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 900 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
[workspace]
members = ["rgrow-rust", "rgrow-python"]
default-members = ["rgrow-rust"]
resolver = "2"
[workspace.dependencies]
ndarray = {version = "^0.17", features = ["serde", "approx", "rayon"]}
rand = {version = "^0.9", features = ["small_rng"]}
serde = {version = "^1.0.185", features=["derive", "rc"]}
pyo3 = {version = "^0.27", features = ["extension-module", "multiple-pymethods"]}
rayon = { version = "1" }
numpy = "^0.27.1"
approx = "^0.5"
pyo3-polars = "^0.26"
polars = {version = "^0.53", features = ["lazy", "parquet", "product", "timezones"]}
[workspace.package]
version = "0.22.0"
authors = ["Constantine Evans <const@costi.net>"]
edition = "2021"
repository = "https://github.com/cgevans/rgrow"
license = "MIT"
categories = ["science", "simulation"]
# Optimized build with debug symbols for profiling (samply, perf, flamegraph)
[profile.profiling]
inherits = "release"
debug = true