forked from dimastbk/python-calamine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
23 lines (20 loc) · 799 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
[package]
name = "python-calamine"
version = "0.1.1"
authors = ["Dmitriy <dimastbk@yandex.ru>"]
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 = {git = "https://github.com/tafia/calamine.git", rev = "a5b85d30", features = ["dates", "chrono"]}
pyo3 = {version = "0.18.3", features = ["extension-module", "chrono"]}
chrono = {version = "0.4.24", features = ["serde"]}
pyo3-file = {git = "https://github.com/omerbenamram/pyo3-file.git", rev = "2bc4c1a0"}
[build-dependencies]
pyo3-build-config = "0.18.3"