[package]
edition = "2024"
rust-version = "1.97"
name = "ecological-model-core"
version = "0.8.0"
build = false
include = [
"src/**/*.rs",
"tests/**/*.rs",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared ecological initial states, interactions, trajectory observation, and terminal products"
homepage = "https://github.com/dingyisun0101/Ecological-Model-Core"
documentation = "https://docs.rs/ecological-model-core"
readme = "README.md"
keywords = [
"ecology",
"simulation",
"dynamical-systems",
"scientific",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/dingyisun0101/Ecological-Model-Core"
[lib]
name = "ecological_model_core"
path = "src/lib.rs"
[[test]]
name = "allocation"
path = "tests/allocation.rs"
[[test]]
name = "initial_state"
path = "tests/initial_state.rs"
[[test]]
name = "interaction"
path = "tests/interaction.rs"
[[test]]
name = "trajectory"
path = "tests/trajectory.rs"
[dependencies.physics_in_parallel]
version = "3.7.0"
[dependencies.scientific-workflow]
version = "0.7.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1