[package] name = "ising_lib" version = "1.0.0" edition = "2021" description = "Ising model simulation on lattices and graphs." keywords = ["ising", "physics", "simulation", "graph", "lattice"] categories = ["science", "simulation"] authors = ["dcxSt "] license = "MIT" readme = "README.md" repository = "https://github.com/micouy/ising_lib" include = [ "Cargo.toml", "src/lattice2d.rs", "src/measurement.rs", "src/monte_carlo_measurement.rs", "src/lib.rs", "tests/integration_tests.rs", "benches/lattice2d_benchmarks.rs", ] [badges] travis-ci = { repository = "micouy/ising_lib" } # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ndarray = "0.15.4" rand = "0.8.5" [dev-dependencies] criterion = "0.3.5" [[bench]] name = "lattice2d_benchmarks" harness = false