-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (22 loc) · 830 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
[package]
name = "castep_model_generator_backend"
description = "A rust-written backend lib for edit and generation of lattice 3D-models compatible with CASTEP and Materials Studio."
readme = "README.md"
homepage = "https://github.com/TonyWu20/castep-model-generator-backend"
repository = "https://github.com/TonyWu20/castep-model-generator-backend"
version = "2.1.3"
edition = "2021"
license = "MIT"
keywords = [
"chemistry",
"CASTEP",
"computational_chem",
"linear_algebra",
"model_generator",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
nalgebra = {version="0.*", features=["debug", "compare", "rand","macros", "alloc", "arbitrary"]}
serde_yaml = "0.9.*"
serde = { version = "1.*", features = ["derive"] }
castep-model-core = "0.2.*"