-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
26 lines (23 loc) · 1 KB
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
[package]
# Name of the project goes here
# Note - it should be the same as the folder which you store your code in!
name = "minimal_plugin"
version = "0.1.0"
edition = "2021"
[lib]
# Name of the project goes here
# Note - it should be the same as the folder which you store your code in!
name = "minimal_plugin"
crate-type= ["cdylib"]
[dependencies]
pyo3 = { version = "0.26", features = ["extension-module", "abi3-py39"] }
pyo3-polars = { version = "0.25", features = ["derive", "dtype-struct", "dtype-decimal", "dtype-array"] }
serde = { version = "1", features = ["derive"] }
polars = { version = "0.52.0", features = ["dtype-struct"], default-features = false }
polars-arrow = { version = "0.52.0", default-features = false }
polars-mem-engine = { version = "0.52.0", features = ["python"]}
polars-core = { version = "0.52.0", features = ["dtype-array"], default-features = false }
polars-sql = { version = "0.52.0", default-features = false }
reverse_geocoder = "4.1.1"
num-traits = "0.2.19"
# rust-stemmers = "1.2.0"