You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
627 B
36 lines
627 B
[package]
|
|
name = "elseware"
|
|
version = "0.1.0"
|
|
authors = ["Jake Probst <jake.probst@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "everything"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "patch"
|
|
path = "src/patch_main.rs"
|
|
|
|
[[bin]]
|
|
name = "login"
|
|
path = "src/login_main.rs"
|
|
|
|
|
|
[dependencies]
|
|
libpso = { git = "http://git.sharnoth.com/jake/libpso" }
|
|
async-std = { version = "1.4.0", features = ["unstable"] }
|
|
futures = "0.3.1"
|
|
rand = "0.6.5"
|
|
mio = "0.6"
|
|
mio-extras = "2.0.5"
|
|
crc = "^1.0.0"
|
|
bcrypt = "0.4"
|
|
threadpool = "1.0"
|
|
chrono = "*"
|
|
serde = "*"
|
|
serde_json = "*"
|
|
ron = "*"
|
|
log = "*"
|
|
fern = { version = "0.5", features = ["colored"] }
|
|
|