mirror of https://github.com/adri326/veccell
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.
20 lines
492 B
20 lines
492 B
[package]
|
|
name = "veccell"
|
|
version = "0.4.0"
|
|
edition = "2021"
|
|
authors = [ "Shad Amethyst <adrien.burgun@orange.fr>" ]
|
|
description = "Provides VecCell, a variant of Vec with interior mutability."
|
|
repository = "https://github.com/adri326/veccell/"
|
|
license = "MIT OR Apache-2.0"
|
|
keywords = ["vec", "refcell", "interior-mutability"]
|
|
categories = ["rust-patterns"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1", optional = true }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
|
|
[features]
|
|
serde = ["dep:serde"]
|