[package]
edition = "2021"
name = "unit"
version = "0.12.3"
authors = ["David Liedle <david.liedle@protonmail.com>"]
build = false
exclude = [
"tests/*",
"target/*",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A self-replicating software nanobot — minimal Forth interpreter that is also a networked mesh agent"
homepage = "https://davidcanhelp.github.io/unit/"
documentation = "https://github.com/DavidCanHelp/unit#readme"
readme = "README.md"
keywords = [
"forth",
"mesh",
"self-replicating",
"distributed",
"nanobot",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/DavidCanHelp/unit"
[[bin]]
name = "unit"
path = "src/main.rs"
[dependencies]
[profile.release]
opt-level = "z"
lto = true
strip = true