Skip to content
Cargo.toml 688 B
Newer Older
Stefan Schindler's avatar
Stefan Schindler committed
[package]
name = "weighted_random_list"
version = "0.1.0"
authors = ["Stefan Schindler <dns2utf8@estada.ch>"]
edition = "2018"
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://gitlab.com/dns2utf8/weighted_random_list"
homepage = "https://gitlab.com/dns2utf8/weighted_random_list"
documentation = "https://docs.rs/weighted_random_list"
description = "A Vec<T> that allows you to define the weight of each entry and randomly get entries"
keywords = ["threadpool", "thread", "pool", "threading", "parallelism"]
categories = ["concurrency", "os"]

Stefan Schindler's avatar
Stefan Schindler committed
include = ["src/*", "examples/*", "Cargo.toml", "README.md", "LICENSE.mit", "LICENSE.apache"]
Stefan Schindler's avatar
Stefan Schindler committed

[dependencies]
rand = "0.6"