Files
2026-08-01 16:11:49 +03:00

55 lines
1.2 KiB
TOML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
################################################################################
# Project Manifest #
# #
# This file describes the Rust project to the Cargo build tool for operations. #
################################################################################
[package]
name = "wyz"
version = "0.5.1"
authors = [
"myrrlyn <self@myrrlyn.dev>",
]
edition = "2018"
categories = [
"no-std",
]
description = "myrrlyns utility collection"
documentation = "https://docs.rs/wyz"
homepage = "https://myrrlyn.net/crates/wyz"
include = [
"Cargo.toml",
"LICENSE.txt",
"README.md",
"src/**/*.rs",
]
keywords = [
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/myrrlyn/wyz"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
[dependencies.once_cell]
version = "1"
optional = true
[dependencies.tap]
version = "1"
[dependencies.typemap]
version = "0.3"
optional = true
[features]
alloc = []
garbage = [
"once_cell",
"typemap",
]
default = ["std"]
std = ["alloc"]