[package]
edition = "2021"
name = "socha"
version = "0.2.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Communication layer for the software challenge germany 2025"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/simoncreates/socha"
[features]
[lib]
name = "socha"
path = "src/lib.rs"
[[example]]
name = "create_connection"
path = "examples/create_connection.rs"
[[example]]
name = "create_room_and_observe"
path = "examples/create_room_and_observe.rs"
[[example]]
name = "i_client_handler_example"
path = "examples/i_client_handler_example.rs"
[[test]]
name = "make_unmake_move"
path = "tests/make_unmake_move.rs"
[[test]]
name = "server_message_parsing"
path = "tests/server_message_parsing.rs"
[dependencies.crossbeam-channel]
version = "0.5.15"
[dependencies.log]
version = "0.4.28"
[dependencies.rand]
version = "0.9.2"
[dependencies.simple-logging]
version = "2.0.2"
[dependencies.strong-xml]
version = "0.6.3"