elseware/Cargo.toml

36 lines
964 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"
[dependencies]
2019-09-07 23:37:45 -07:00
libpso = { git = "http://git.sharnoth.com/jake/libpso" }
2021-06-17 02:56:41 -06:00
async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
2020-06-02 18:51:18 -06:00
futures = "0.3.5"
2020-03-14 10:44:27 -07:00
rand = "0.7.3"
rand_chacha = "0.2.2"
2019-08-20 17:59:36 -07:00
crc = "^1.0.0"
2021-07-30 22:06:05 -06:00
bcrypt = "0.10"
2020-10-03 17:30:24 -06:00
chrono = "0.4.11"
2021-06-17 00:21:13 -06:00
serde = "*"
2021-06-16 23:14:38 -06: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"]}
2020-04-25 22:16:40 -06:00
thiserror = "1.0.15"
2020-05-24 15:59:48 -06:00
ages-prs = "0.1"
2021-09-27 23:05:11 -06:00
async-trait = "0.1.51"
2020-08-20 22:53:34 -06:00
lazy_static = "1.4.0"
2020-10-03 17:30:24 -06:00
barrel = { version = "0.6.5", features = ["pg"] }
2021-06-17 00:23:23 -06:00
refinery = { version = "0.5.0", features = ["postgres"] }
2020-11-12 19:05:30 -07:00
sqlx = { version = "0.4.0", features = ["runtime-async-std-native-tls", "postgres", "json", "chrono"] }
2020-10-29 22:10:28 -06:00
strum = "0.19.5"
strum_macros = "0.19"
2021-12-10 13:07:39 -07:00
anyhow = { version = "1.0.47", features = ["backtrace"] }
2019-09-23 22:27:43 -07:00