practice_runLengthEncoding/rust_impl/Cargo.toml

11 lines
261 B
TOML
Raw Normal View History

2021-02-19 02:08:41 +00:00
[package]
2021-08-18 11:31:47 +00:00
name = "run_length_encoding"
2021-02-19 02:08:41 +00:00
version = "0.1.0"
authors = ["Stephen Seo <seo.disparate@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2021-08-18 11:31:47 +00:00
structopt = "0.3.22"