elseware/Cargo.toml

32 lines
472 B
TOML
Raw Normal View History

2019-05-29 22:33:50 -07:00
[package]
2019-06-25 15:14:53 -07:00
name = "elseware"
2019-05-29 22:33:50 -07:00
version = "0.1.0"
authors = ["Jake Probst <jake.probst@gmail.com>"]
edition = "2018"
[[bin]]
name = "everything"
path = "src/main.rs"
2019-06-25 15:14:53 -07:00
[[bin]]
name = "patch"
path = "src/patch_main.rs"
2019-06-25 15:14:53 -07:00
2019-07-14 00:54:29 -07:00
[[bin]]
name = "login"
path = "src/login_main.rs"
2019-06-25 15:14:53 -07:00
2019-05-29 22:33:50 -07:00
[dependencies]
2019-09-07 23:37:45 -07:00
libpso = { git = "http://git.sharnoth.com/jake/libpso" }
2019-06-25 15:14:53 -07:00
rand = "0.6.5"
mio = "0.6"
2019-09-04 09:17:22 -07:00
mio-extras = "2.0.5"
2019-08-20 17:59:36 -07:00
crc = "^1.0.0"
2019-09-04 09:17:22 -07:00
bcrypt = "0.4"
2019-09-23 22:27:43 -07:00
threadpool = "1.0"
chrono = "*"
2019-11-21 10:12:20 -05:00
serde = "*"
ron = "*"
2019-09-23 22:27:43 -07:00