-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 839 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
29
30
31
32
33
[dependencies]
arrow = {version = "54.1.0", features = ["pyarrow"]}
arrow-array = {version = "54.1.0"}
arrow-schema = {version = "54.1.0"}
chrono = {version = "0.4.39"}
protobuf = {version = "3.7.1"}
pyo3 = {version = "0.23.4", features = ["abi3-py310"]}
[features]
default = ["extension-module"]
extension-module = ["pyo3/extension-module"]
[lib]
crate-type = ["cdylib"]
name = "ptars"
[package]
authors = ["0x26res <[email protected]>"]
description = "Fast python conversion from protobuf to arrow using rust"
edition = "2021"
homepage = "https://github.com/0x26res/ptars"
license = "Apache-2.0"
name = "ptarslib"
readme = "README.md"
repository = "https://github.com/0x26res/ptars"
version = "0.0.3"
[package.metadata.maturin]
name = "ptars._lib"
[package.metadata.release]
publish = false # handled by GitHub Actions
push = true