-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (51 loc) · 1.62 KB
/
Copy pathCargo.toml
File metadata and controls
62 lines (51 loc) · 1.62 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "readcon-db"
version = "0.1.6"
edition = "2021"
description = "Mmap-backed CON frame corpus (Heed/LMDB), xxHash exact match, multi-language FFI"
license = "MIT"
repository = "https://github.com/lode-org/readcon-db"
homepage = "https://lode-org.github.io/readcon-db/"
documentation = "https://docs.rs/readcon-db"
rust-version = "1.88"
readme = "README.md"
keywords = ["con", "trajectory", "lmdb", "mmap", "molecular-dynamics"]
categories = ["database", "science", "api-bindings"]
[lib]
name = "readcon_db"
crate-type = ["lib", "cdylib", "staticlib"]
[features]
default = []
python = ["dep:pyo3"]
capi = []
[dependencies]
heed = "0.21"
# The pinned writer provides exact numeric CON and JSON round trips.
readcon-core = { version = "=0.14.9", git = "https://github.com/lode-org/readcon-core", rev = "2fd79dddb948e22e4a74b2e85de98a3ae4c3d08b" }
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
pyo3 = { version = "0.28", features = ["extension-module"], optional = true }
[dev-dependencies]
tempfile = "3"
[package.metadata.docs.rs]
all-features = false
[package.metadata.capi]
min_version = "0.10.17"
[package.metadata.capi.header]
name = "readcon-db"
subdirectory = ""
generation = false
[package.metadata.capi.pkg_config]
name = "readcon-db"
filename = "readcon-db"
description = "Mmap-backed CON frame corpus (LMDB) with C/C++ FFI"
[package.metadata.capi.install.include]
asset = [
{ from = "include/readcon-db.h" },
{ from = "include/readcon-db-mpi.h" },
]
[[example]]
name = "bench_corpus_ops"
path = "examples/bench_corpus_ops.rs"