[package]
edition = "2021"
name = "lattice-core"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple Lattice/Graph Library"
readme = "README.md"
keywords = [
"lattice",
"graph",
"physics",
]
license = "Apache-2.0"
repository = "https://github.com/todo-group/lattice"
[lib]
name = "lattice_core"
path = "src/lib.rs"
[[example]]
name = "construct1"
path = "examples/construct1.rs"
[[example]]
name = "construct2"
path = "examples/construct2.rs"
[[example]]
name = "construct3"
path = "examples/construct3.rs"
[[example]]
name = "construct4"
path = "examples/construct4.rs"
[[example]]
name = "construct_xml"
path = "examples/construct_xml.rs"
[[example]]
name = "ising"
path = "examples/ising.rs"
[[test]]
name = "core"
path = "tests/core.rs"
[[test]]
name = "xml"
path = "tests/xml.rs"
[dependencies.nalgebra]
version = "0.33"
features = ["std"]
default-features = false
[dependencies.roxmltree]
version = "0.20"