spin-sim 0.2.0

Ising model Monte Carlo: Metropolis, Gibbs, Wolff, Swendsen-Wang, parallel tempering, Houdayer ICM
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "spin-sim"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Ising model Monte Carlo: Metropolis, Gibbs, Wolff, Swendsen-Wang, parallel tempering, Houdayer ICM"
readme = "README.md"
keywords = [
    "ising",
    "monte-carlo",
    "spin-glass",
    "parallel-tempering",
    "cluster-algorithm",
]
categories = [
    "science",
    "simulation",
]
license = "MIT"
repository = "https://github.com/PeaBrane/peapods"

[features]
profile = []

[lib]
name = "spin_sim"
path = "src/lib.rs"

[[example]]
name = "bench"
path = "examples/bench.rs"

[dependencies.rand]
version = "0.8"

[dependencies.rand_xoshiro]
version = "0.6"

[dependencies.rayon]
version = "1.10"

[dependencies.validator]
version = "0.16"
features = ["derive"]

[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ['cfg(feature, values("profile"))']