-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
27 lines (24 loc) · 814 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
[package]
name = "python-calamine"
version = "0.3.1"
authors = ["Dmitriy <[email protected]>"]
description = "Python binding for Rust's library for reading excel and odf file - calamine"
edition = "2021"
homepage = "https://github.com/dimastbk/python-calamine"
license = "MIT"
readme = "README.md"
repository = "https://github.com/dimastbk/python-calamine"
[lib]
name = "python_calamine"
crate-type = ["cdylib"]
[dependencies]
calamine = { version = "0.26.1", features = ["dates"] }
pyo3 = { version = "0.23.0", features = [
"extension-module",
"chrono",
"generate-import-lib",
] }
chrono = { version = "0.4.38", features = ["serde"] }
pyo3-file = { git = "https://github.com/dimastbk/pyo3-file", rev = "baffde5aba70474f899a3f5379940cbf4a28e52c" }
[build-dependencies]
pyo3-build-config = "0.23.0"