22 lines
554 B
TOML
22 lines
554 B
TOML
[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"] }
|