[package]
edition = "2024"
name = "hexga_engine_events"
version = "0.0.10-beta.16"
authors = ["Mewily <thomas.mewily@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Events interface for the Hexga Engine"
homepage = "https://github.com/Thomas-Mewily/hexga"
readme = "README.md"
keywords = []
categories = []
license = "MIT OR Apache-2.0"
repository = "https://github.com/Thomas-Mewily/hexga"
[features]
default = [
"serde",
"hexga_io",
"int_are_32_bits",
"float_are_32_bits",
]
float_are_32_bits = ["hexga_math/float_are_32_bits"]
float_are_64_bits = ["hexga_math/float_are_64_bits"]
float_are_size_bits = ["hexga_math/float_are_size_bits"]
hexga_io = [
"dep:hexga_io",
"dep:hexga_io_derive",
"serde",
"hexga_math/hexga_io",
]
int_are_16_bits = ["hexga_math/int_are_16_bits"]
int_are_32_bits = ["hexga_math/int_are_32_bits"]
int_are_64_bits = ["hexga_math/int_are_64_bits"]
int_are_8_bits = ["hexga_math/int_are_8_bits"]
int_are_size_bits = ["hexga_math/int_are_size_bits"]
serde = [
"dep:serde",
"dep:hexga_io",
"hexga_math/serde",
]
[lib]
name = "hexga_engine_events"
path = "src/lib.rs"
[dependencies.hexga_core]
version = "0.0.10-beta.16"
default-features = false
[dependencies.hexga_io]
version = "0.0.10-beta.16"
optional = true
default-features = false
[dependencies.hexga_io_derive]
version = "0.0.10-beta.16"
optional = true
default-features = false
[dependencies.hexga_math]
version = "0.0.10-beta.16"
default-features = false
[dependencies.serde]
version = "1.0.0"
features = ["derive"]
optional = true