This repository was archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 1.24 KB
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
34
35
36
37
38
39
[package]
name = "datafusion"
version = "0.2.1"
authors = ["Jorge C. Leitao <jorgecarleitao@gmail.com>"]
description = "Build and run queries against data"
readme = "README.md"
repository = "https://github.com/jorgecarleitao/datafusion-python"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
tokio = "0.2.22"
rand = "0.7"
pyo3 = { version = "0.12.1", features = ["extension-module"] }
datafusion = { git = "https://github.com/apache/arrow.git", rev = "f945eba", features = ["simd"] }
arrow = { git = "https://github.com/apache/arrow.git", rev = "f945eba", features = ["simd"] }
[lib]
name = "datafusion"
crate-type = ["cdylib"]
[package.metadata.maturin]
requires-dist = ["pyarrow>=1"]
classifier = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python",
"Programming Language :: Rust",
]