38 lines
878 B
TOML
38 lines
878 B
TOML
# This file is part of ICU4X. For terms of use, please see the file
|
|
# called LICENSE at the top level of the ICU4X source tree
|
|
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
|
|
|
|
[package]
|
|
name = "zerofrom"
|
|
description = "ZeroFrom trait for constructing"
|
|
version = "0.1.8"
|
|
categories = ["data-structures", "caching", "no-std"]
|
|
keywords = ["zero-copy", "serialization", "memory-efficiency"]
|
|
|
|
authors.workspace = true
|
|
edition = "2021"
|
|
include.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version = "1.71.1"
|
|
|
|
[package.metadata.workspaces]
|
|
independent = true
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
|
|
[package.metadata.playground]
|
|
all-features = true
|
|
|
|
[features]
|
|
alloc = []
|
|
derive = ["dep:zerofrom-derive"]
|
|
default = ["alloc"]
|
|
|
|
[dependencies]
|
|
zerofrom-derive = { workspace = true, optional = true}
|
|
|
|
[lints]
|
|
workspace = true
|