18 lines
638 B
TOML
18 lines
638 B
TOML
[package]
|
|
name = "playground"
|
|
description = """The playground example is a special example meant for unstructured experimentation which can potentially
|
|
be turned into an actual example at some point or deleted. It should always be reset to unchanged hello world before
|
|
the working branch where the experimentation is happening is merged."""
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
repository.workspace = true
|
|
readme.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
thiserror.workspace = true
|
|
uom.workspace = true
|
|
log.workspace = true
|
|
env_logger.workspace = true
|
|
futures-lite.workspace = true
|
|
async-io.workspace = true |