-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 939 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (31 loc) · 939 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
35
36
37
38
[package]
name = "cordoba"
description = "Zero-copy and mmapable CDB access library with a Python interface"
version = "0.3.5"
authors = ["Jonathan Bastien-Filiatrault <joe@x2a.org>"]
edition = "2018"
homepage = "https://github.com/jothan/cordoba"
repository = "https://github.com/jothan/cordoba.git"
license = "GPL-3.0+"
readme = "README.md"
keywords = ["cdb", "python"]
categories = ["database", "data-structures", "config", "filesystem", "no-std"]
[profile.release]
panic = "abort"
[dependencies]
clap = { version="2.31", optional=true }
memmap = { version="0.7.0", optional=true }
pyo3 = { version="0.11", features=["extension-module"], optional=true }
[features]
default = ["build-binary", "std"]
build-binary = ["clap", "memmap"]
std = []
python = ["pyo3", "memmap"]
[lib]
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "cdb"
required-features = ["build-binary"]
[[bin]]
name = "cdbwrite"
required-features = ["build-binary"]