forked from SBentley/qvd-utils
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 793 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 793 Bytes
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
[package]
name = "qvd"
version = "0.0.14"
authors = ["Sam Bentley <samtbentley@gmail.com>"]
edition = "2018"
readme = "README.md"
description = "A library for reading Qlik Sense .qvd file format from Python, written in Rust."
license = "Apache-2.0"
repository = "https://github.com/SBentley/qvd-utils"
keywords = ["python", "rust", "qlik", "sense", "qvd"]
[lib]
name = "qvd"
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.117", features = ["derive"] }
quick-xml = { version = "0.20.0", features = ["serialize"]}
bitvec = "0.19.4"
regex = "1"
[dependencies.pyo3]
version = "0.12.3"
features = ["extension-module"]
[package.metadata.maturin]
requires-dist = ["pandas>=1.1.4"]