forked from acquire-project/acquire-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 685 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 685 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
30
31
32
33
34
[package]
name = "acquire-imaging"
authors = ["Nathan Clack <nclack@chanzuckerberg.com>"]
version = "0.1.4"
edition = "2021"
[lib]
name = "acquire"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.18", features = [
"extension-module",
"anyhow",
"abi3-py38",
"serde",
] }
pyo3-log = "0.8"
numpy = "0.18"
log = "0.4"
anyhow = "1.0"
parking_lot = "0.12"
serde = { version = "1.0", features = ["derive"] }
pythonize = "0.18"
[build-dependencies]
bindgen = "0.65"
cmake = "0.1"
http = "0.2"
json = "0.12"
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
zip-extract = "0.1"