-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (30 loc) · 881 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
34
35
[package]
name = "openbabel"
version = "0.5.3"
edition = "2018"
authors = ["Qin Wan <[email protected]>"]
license = "MIT"
description = "Rust bindings to cheminformatics toolbox OpenBabel"
repository = "https://github.com/rogerwq/openbabel-rust"
homepage = "https://github.com/rogerwq/openbabel-rust"
documentation = "https://docs.rs/openbabel"
keywords = ["cheminformatics", "openbabel"]
categories = ["science"]
[dependencies]
cxx = "1.0"
ob_rs = { package = "openbabel-sys", version = "0.5.3", path = "openbabel-sys" }
strum = { version = "0.24", features = ["derive"] }
strum_macros = "0.24"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
criterion = "0.3.5"
chiral-db-sources = "0.2.0"
[[bench]]
name = "fingerprint"
harness = false
[[bench]]
name = "substructure"
harness = false
[[example]]
name = "fingerprint"
path = "examples/fingerprint.rs"