Skip to content
Cargo.toml 671 B
Newer Older
Stefan Schindler's avatar
Stefan Schindler committed
[package]
name = "weighted_random_list"
Stefan Schindler's avatar
Stefan Schindler committed
version = "0.1.1"
Stefan Schindler's avatar
Stefan Schindler committed
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"
Stefan Schindler's avatar
Stefan Schindler committed
keywords = ["collection", "vec", "random"]
categories = ["data-structures", "algorithms"]
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"