# turnbase-session > The Session port for Turnbase: in-memory and file-backed hosts behind one request/response interface **Version:** 0.0.0 **Authors:** Matan Lurey **License:** MIT OR Apache-2.0 **Repository:** https://github.com/crates-lurey-io/turnbase **Keywords:** game-engine, turn-based, deterministic, gamedev, ai Generated: 2026-07-25 17:07:54 UTC Created by: [cargo-llms-txt](https://github.com/masinc/cargo-llms-txt) ## Core Documentation - [Complete API Documentation](llms-full.txt): Full public API documentation with detailed descriptions - [README](README.md): Project overview and getting started guide - [Cargo.toml](Cargo.toml): Project configuration and dependencies ## Table of Contents ### src/lib.rs - pub use file::{Error, FileSession} - pub use local::LocalSession - pub trait Session ### src/local.rs - pub struct LocalSession - impl LocalSession - impl Session for LocalSession - impl Game for tests::Secret - impl Game for tests::RevealOnce ### src/file.rs - pub struct FileSession - impl FileSession - pub enum Error - impl fmt::Display for Error - impl std::error::Error for Error - impl Game for tests::CountToThree - impl Game for tests::Reveal --- ## README.md ### turnbase-session The Session port for Turnbase: in-memory and file-backed hosts behind one request/response interface Part of the [turnbase](https://github.com/crates-lurey-io/turnbase) workspace. ## Cargo.toml ```toml [package] name = "turnbase-session" version = "0.0.0" edition = "2024" description = "The Session port for Turnbase: in-memory and file-backed hosts behind one request/response interface" license = "MIT OR Apache-2.0" repository = "https://github.com/crates-lurey-io/turnbase" keywords = ["game-engine","turn-based","deterministic","gamedev","ai"] categories = ["game-development","simulation"] authors = ["Matan Lurey "] ```