x/Cargo.toml

21 lines
357 B
TOML
Raw Permalink Normal View History

2020-09-26 13:28:16 +00:00
[package]
name = "cadey"
version = "0.0.1"
authors = ["Christine Dodrill <me@christine.website>"]
edition = "2018"
[dependencies]
2020-09-26 13:39:06 +00:00
# lib
pfacts = { path = "./lib/pfacts" }
# web
battlesnake = { path = "./web/battlesnake" }
2020-09-26 13:28:16 +00:00
onesecmail = { path = "./web/onesecmail" }
[workspace]
members = [
2020-09-26 13:39:06 +00:00
"./lib/pfacts",
"./web/battlesnake",
"./web/onesecmail",
2020-09-26 13:28:16 +00:00
]