-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (36 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
41 lines (36 loc) · 897 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
39
40
41
[package]
name = "ffcharge"
version = "0.2.1"
authors = ["Tony Kan <tianchengkan@gmail.com>"]
license = "MIT"
repository = "https://github.com/TKanX/ffcharge"
edition = "2024"
description = "A lightweight pure Rust library for fast, residue-based force field charge assignment (AMBER/CHARMM) in molecular modeling pipelines."
keywords = [
"chemistry",
"partial-charges",
"molecular-dynamics",
"force-fields",
"no-std",
]
categories = [
"science::computational-chemistry::molecular-simulation",
"no-std",
]
readme = "README.md"
[dependencies]
phf = { version = "0.13.1", default-features = false }
[dev-dependencies]
pastey = "0.2.1"
[build-dependencies]
phf_codegen = "0.13.1"
csv = "1.4.0"
serde = { version = "1.0.228", features = ["derive"] }
[lib]
name = "ffcharge"
path = "src/lib.rs"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true