[package]
edition = "2021"
name = "siecs"
version = "0.1.2"
build = "build.rs"
links = "siecs"
include = [
"Cargo.toml",
"README.md",
"build.rs",
"src/**",
"tests/**",
"vendor/siecs.c",
"vendor/siecs.h",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust bindings for SIECS"
homepage = "https://github.com/suleymanlaarabi/siecs"
documentation = "https://docs.rs/siecs"
readme = "README.md"
keywords = [
"ecs",
"entity-component",
"ffi",
"gamedev",
]
categories = [
"data-structures",
"game-development",
]
license = "MIT"
repository = "https://github.com/suleymanlaarabi/siecs"
[lib]
name = "siecs"
path = "src/lib.rs"
[[test]]
name = "basic"
path = "tests/basic.rs"
[[test]]
name = "builtin"
path = "tests/builtin.rs"
[[test]]
name = "defer"
path = "tests/defer.rs"
[[test]]
name = "derive"
path = "tests/derive.rs"
[[test]]
name = "event"
path = "tests/event.rs"
[[test]]
name = "module"
path = "tests/module.rs"
[[test]]
name = "observer"
path = "tests/observer.rs"
[[test]]
name = "resource"
path = "tests/resource.rs"
[[test]]
name = "with"
path = "tests/with.rs"
[dependencies.siecs_derive]
version = "0.1.0"
[build-dependencies.cc]
version = "1"