elseware/Cargo.toml

43 lines
842 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"
2020-01-23 18:03:49 -08:00
#[[bin]]
#name = "patch"
#path = "src/patch_main.rs"
2019-06-25 15:14:53 -07:00
2020-01-23 18:03:49 -08: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" }
2020-01-23 18:00:34 -08:00
async-std = { version = "1.4.0", features = ["unstable"] }
futures = "0.3.1"
2020-03-14 10:44:27 -07:00
rand = "0.7.3"
rand_chacha = "0.2.2"
2019-06-25 15:14:53 -07:00
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 = "*"
2019-12-03 21:42:46 -08:00
serde_json = "*"
2019-11-21 10:12:20 -05:00
ron = "*"
2020-03-14 10:44:27 -07:00
toml = "*"
2019-12-18 19:31:25 -08:00
log = "*"
fern = { version = "0.5", features = ["colored"] }
2020-01-31 09:09:31 -08:00
byteorder = "1"
2020-03-14 10:44:27 -07:00
enum-utils = "0.1.2"
derive_more = { version = "0.99.3", features = ["display"]}
2019-09-23 22:27:43 -07:00
2020-03-22 22:40:40 -03:00
[patch."http://git.sharnoth.com/jake/libpso"]
libpso = { path = "../libpso" }