Source code

Revision control

Copy as Markdown

Other Tools

# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2021"
rust-version = "1.64"
name = "fallible_collections"
version = "0.5.1"
authors = ["vcombey <vcombey@student.42.fr>"]
build = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a crate which adds fallible allocation api to std collections"
readme = "README.md"
keywords = [
"fallible",
"allocation",
"collections",
"oom",
"try-reserve",
]
categories = [
"rust-patterns",
"memory-management",
]
license = "MIT OR Apache-2.0"
[lib]
name = "fallible_collections"
path = "src/lib.rs"
[dependencies.hashbrown]
version = "0.14"
optional = true
[features]
default = ["hashmap"]
hashmap = ["dep:hashbrown"]
rust_1_57 = []
std = []
std_io = ["std"]
unstable = []