You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
460 B

[package]
name = "stack-str"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# Make `StackString<SIZE>` a `Copy` type
#
# This can be useful for small values of `SIZE`, but it will cause a lot of unneeded and redundant copying of large values of `SIZE`.
# Therefore, it is avdised to only be enabled if using only small `StackString`s.
copy = []
[dependencies]