-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 878 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
[package]
name = "idhashrs"
version = "0.2.0"
edition = "2018"
license = "GPL-2.0-or-later"
authors = [
"Lissa Hyacinth <[email protected]>"
]
repository = "https://github.com/lissahyacinth/idhash-py"
description = "Calculate the Unique Numeric Fingerprint for Tabular Data"
readme = "README.md"
[lib]
name = "idhash"
# "cdylib" is necessary to produce a shared library for Python to import from.
#
# Downstream Rust code (including code in `bin/`, `examples/`, and `tests/`) will not be able
# to `use string_sum;` unless the "rlib" or "lib" crate type is also included, e.g.:
# crate-type = ["cdylib", "rlib"]
crate-type = ["cdylib"]
[dependencies]
arrow = { package = "arrow2", version = "0.8.0", default-features = false, features = ["csv", "io_csv_read"] }
idhash = { version = "0.2.0" }
[dependencies.pyo3]
version = "0.14.5"
features = ["extension-module"]