-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (27 loc) · 991 Bytes
/
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
[workspace]
members = [
"cfpyo3_rs_core",
"cfpyo3_rs_bindings",
"cfpyo3_rs_py",
]
resolver = "2"
[workspace.package]
version = "0.1.13"
edition = "2021"
authors = ["carefree0910 <[email protected]>"]
description = "a collection of performant utilities"
homepage = "https://github.com/carefree0910/carefree-pyo3"
repository = "https://github.com/carefree0910/carefree-pyo3"
readme = "README.md"
keywords = ["python", "rust", "pyo3"]
categories = ["algorithms", "data-structures"]
license-file = "LICENSE"
[workspace.dependencies]
# please make sure the `version`s used here are the same as the
# `version` defined above (in `workspace.package`)
cfpyo3_rs_core = { path = "cfpyo3_rs_core", version = "0.1.13" }
cfpyo3_rs_bindings = { path = "cfpyo3_rs_bindings", version = "0.1.13" }
# other common dependencies
anyhow = "1.0.89"
numpy = "0.21.0"
pyo3 = { version = "0.21.0", features = ["abi3-py38", "anyhow", "chrono", "extension-module", "multiple-pymethods"] }