-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
26 lines (21 loc) · 848 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# [Make a Combined Library and Binary Project in Rust](https://dev.to/yjdoc2/make-a-combined-library-and-binary-project-in-rust-d4f)
[package]
authors = ["Samuel Larkin <[email protected]>"]
categories = [ "command-line-utilities", "library" ]
description = "A tool to perform un/weighted reservoir sampling"
edition = "2021"
keywords = [ "Sampling", "CLI" ]
name = "reservoir_sampling"
readme = "README.md"
repository = "https://github.com/SamuelLarkin/reservoir_sampling_rs.git"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.1.1", features = ["derive"] }
rand = { version = "0.8.5", features = ["small_rng"] }
[[bin]]
name = "reservoir_sampling_rs"
path = "src/main.rs"
[lib]
name = "reservoir_sampling"
path = "src/lib.rs"