[package]
edition = "2021"
name = "ibag"
version = "0.3.5"
authors = ["Brian G"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A thread-safe, immutable bag for holding any value"
readme = "README.md"
license = "MIT"
repository = "https://github.com/open1s/ibag.git"
[lib]
name = "ibag"
path = "src/lib.rs"
[[test]]
name = "basic_operations"
path = "tests/basic_operations.rs"
[[test]]
name = "basic_usage"
path = "tests/basic_usage.rs"
[[test]]
name = "thread_safety"
path = "tests/thread_safety.rs"
[dependencies]