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.
26 lines
537 B
26 lines
537 B
[package]
|
|
name = "elseware"
|
|
version = "0.1.0"
|
|
authors = ["Jake Probst <jake.probst@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "patch"
|
|
path = "src/patch/main.rs"
|
|
|
|
[[bin]]
|
|
name = "login"
|
|
path = "src/login/main.rs"
|
|
|
|
[dependencies]
|
|
futures-preview = "=0.3.0-alpha.16"
|
|
libpso = { path = "../libpso" }
|
|
rand = "0.6.5"
|
|
walkdir = "2"
|
|
mio = "0.6"
|
|
crc = "^1.0.0"
|
|
dotenv = "0.14.1"
|
|
diesel = { version = "1.4.2", features = ["r2d2", "postgres", "chrono"] }
|
|
diesel-derive-enum = { version = "0.4", features = ["postgres"]}
|
|
bcrypt = "0.4"
|
|
r2d2 = "*"
|