# 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 = "zhifeng_impl_barnes_hut_tree" version = "0.0.20240603" authors = ["Zhifeng Wang"] include = [ "benches/**", "src/**", "tests/**", "**/ReadMe.md", "License.txt", "/.gitignore", ] description = "This crate implements Barns-Hut Tree for accelerated N-body force calculation." readme = "ReadMe.md" keywords = ["Barnes-Hut-Tree"] categories = ["data-structures"] license = "AGPL-3.0-only" repository = "https://github.com/zf-w/zhifeng_impl_barnes_hut_tree/" [[test]] name = "check_new" required-features = ["serialize"] [[test]] name = "check_calc" required-features = [ "serialize", "unchecked", ] [[bench]] name = "cmp_n_body_force_sim" harness = false [dependencies.serde] version = "1.0.202" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.117" optional = true [dev-dependencies.criterion] version = "0.3" [dev-dependencies.rand] version = "0.8.5" [features] serialize = [ "dep:serde", "dep:serde_json", ] unchecked = []