[package] name = "rsam" version = "1.0.0" edition = "2021" authors = ["Wenjie Wei ", "Songtao Gui < songtaogui@163.com>"] description = "Random sampler for text-based data in Rust using reservoir sampling algorithm." readme = "README.md" license = "GPL-3.0-only" homepage = "https://wjwei.blog" documentation = "https://docs.rs/crate/rsam/latest" repository = "https://github.com/wjwei-handsome/rsam" exclude = ["**/tests/**", 'log_cfg.yml'] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bytecount = "0.6.3" clap = { version = "4.1.8", features = ["derive"] } log = "0.4.17" log4rs = "1.2.0" rand = "0.8.5" rand_pcg = "0.3.1"