aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:04:08 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-05-10 07:04:08 +0000
commit9065bbd54c626ecab539f6e58c0e06f94b46a66d (patch)
tree619b140d4e933acdbc6d87f524856c1a682011ad /Cargo.toml.orig
parentc7a0ca3f7fc2a1505551536e0b90e0d209a2a824 (diff)
parenteeb16f6eac71f26869b8e85d27fa5a7162f323d3 (diff)
downloadslab-aml_res_331114000.tar.gz
Change-Id: I0f27a5975c6944693c5771ad0f4d3eb35994dadf
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig31
1 files changed, 20 insertions, 11 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 88da41f..bc25be8 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -3,20 +3,29 @@
name = "slab"
# When releasing to crates.io:
# - Update version number
-# - lib.rs: html_root_url.
# - README.md
# - Update CHANGELOG.md
-# - Update doc URL.
-# - Cargo.toml
-# - README.md
# - Create git tag
-version = "0.4.2"
-license = "MIT"
+version = "0.4.5"
authors = ["Carl Lerche <me@carllerche.com>"]
+edition = "2018"
+license = "MIT"
description = "Pre-allocated storage for a uniform data type"
-documentation = "https://docs.rs/slab/0.4.2/slab/"
-homepage = "https://github.com/carllerche/slab"
-repository = "https://github.com/carllerche/slab"
+documentation = "https://docs.rs/slab"
+homepage = "https://github.com/tokio-rs/slab"
+repository = "https://github.com/tokio-rs/slab"
readme = "README.md"
-keywords = ["slab", "allocator"]
-categories = ["memory-management", "data-structures"]
+keywords = ["slab", "allocator", "no_std"]
+categories = ["memory-management", "data-structures", "no-std"]
+exclude = ["/.*"]
+
+[features]
+std = []
+default = ["std"]
+
+[dependencies]
+serde = { version = "1.0.95", optional = true, default-features = false, features = ["alloc"] }
+
+[dev-dependencies]
+serde = { version = "1", features = ["derive"] }
+serde_test = "1"