this_algorithm/Cargo.toml

19 lines
319 B
TOML
Raw Normal View History

2023-01-22 22:51:44 -05:00
[package]
2023-02-09 00:10:34 -05:00
name = "this_algoritm"
2023-01-22 22:51:44 -05:00
version = "0.1.0"
edition = "2021"
2023-02-11 17:04:16 -05:00
[workspace]
members = [
".",
2023-02-15 19:17:31 -05:00
"./words",
# "./this_algorithm",
2023-02-11 17:04:16 -05:00
]
2023-01-22 22:51:44 -05:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
s2 = "0.0.12"
thiserror = "1.0.38"
words = {path="./words"}