[package]
edition = "2021"
name = "ferrum-types"
version = "0.5.0"
authors = ["Ferrum Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared type definitions for the Ferrum LLM inference engine"
readme = "README.md"
license = "MIT"
repository = "https://github.com/sizzlecar/ferrum-infer-rs"
[lib]
name = "ferrum_types"
path = "src/lib.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "devices_tests"
path = "tests/devices_tests.rs"
[[test]]
name = "errors_tests"
path = "tests/errors_tests.rs"
[[test]]
name = "ids_tests"
path = "tests/ids_tests.rs"
[[test]]
name = "metrics_tests"
path = "tests/metrics_tests.rs"
[[test]]
name = "models_tests"
path = "tests/models_tests.rs"
[[test]]
name = "requests_tests"
path = "tests/requests_tests.rs"
[[test]]
name = "sampling_tests"
path = "tests/sampling_tests.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.rand]
version = "0.9.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.smallvec]
version = "1.11"
[dependencies.thiserror]
version = "1.0"
[dependencies.uuid]
version = "1.6"
features = [
"v4",
"serde",
]