-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
22 lines (19 loc) · 745 Bytes
/
Cargo.toml
File metadata and controls
22 lines (19 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[package]
name = "generic_singleton"
version = "0.5.3"
edition = "2024"
rust-version = "1.85"
authors = ["Walter Smuts <smuts.walter@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "A library crate allowing for generic singleton patterns"
documentation = "https://docs.rs/generic_singleton/"
repository = "https://github.com/WalterSmuts/generic_singleton"
keywords = ["static", "singleton", "generic", "initialize", "global"]
categories = ["caching", "data-structures", "memory-management", "config", "rust-patterns"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anymap3 = "1.0.1"
parking_lot = "0.12.1"
[dev-dependencies]
num-traits = "0.2.15"