Initial commit
Some checks failed
Cargo test & clippy / task (push) Has been cancelled

This commit is contained in:
2025-02-03 23:33:53 +01:00
commit d3b3fdf026
9 changed files with 711 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "laika"
version = "0.1.4"
edition = "2024"
authors = ["Laika Schmidt <laika.schmidt@magenta.de>"]
description = "A namespace crate containing miscellaneous submodules (like an SPMC channel) of owner its-laika"
repository = "https://github.com/its-laika/crates"
readme = "README.md"
license = "MIT"
keywords = ["channel", "spmc", "oneshot"]
categories = ["concurrency"]
include = ["**/*.rs", "Cargo.toml"]
[lib]
source = "src/lib.rs"
[features]
shotgun = []
[dev-dependencies]
tokio = { version = "1.48", features = ["rt", "macros"] }