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>"]
|
2022-10-18 04:46:21 -06:00
|
|
|
edition = "2021"
|
2019-05-29 22:33:50 -07:00
|
|
|
|
2023-11-10 21:37:23 -07:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2023-11-11 14:28:41 -07:00
|
|
|
"client",
|
|
|
|
"drops",
|
2023-11-10 21:37:23 -07:00
|
|
|
"entity",
|
2023-11-11 14:28:41 -07:00
|
|
|
"items",
|
|
|
|
"location",
|
2023-11-10 21:37:23 -07:00
|
|
|
"maps",
|
|
|
|
"networking",
|
2023-11-11 14:28:41 -07:00
|
|
|
"pktbuilder",
|
|
|
|
"quests",
|
|
|
|
"room",
|
2023-11-10 23:31:47 -07:00
|
|
|
"shops",
|
|
|
|
"stats",
|
2023-11-11 14:28:41 -07:00
|
|
|
"trade",
|
2023-11-10 21:37:23 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
entity = { path = "./entity" }
|
|
|
|
maps = { path = "./maps" }
|
|
|
|
networking = { path = "./networking" }
|
2023-11-10 23:31:47 -07:00
|
|
|
shops = { path = "./shops" }
|
|
|
|
stats = { path = "./stats" }
|
2023-11-11 14:28:41 -07:00
|
|
|
items = { path = "./items" }
|
|
|
|
pktbuilder = { path = "./pktbuilder" }
|
|
|
|
quests = { path = "./quests" }
|
|
|
|
location = { path = "./location" }
|
|
|
|
client = { path = "./client" }
|
|
|
|
drops = { path = "./drops" }
|
|
|
|
trade = { path = "./trade" }
|
|
|
|
room = { path = "./room" }
|
2023-11-10 23:38:56 -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"]}
|
2022-10-18 04:46:21 -06:00
|
|
|
thiserror = "1.0.37"
|
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"
|
2022-07-18 18:42:44 -06:00
|
|
|
async-recursion= "1.0.0"
|
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"] }
|
2023-02-18 15:07:31 -07:00
|
|
|
sqlx = { version = "0.6.2", 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"
|
2023-01-28 20:12:20 -07:00
|
|
|
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
2023-11-10 21:37:23 -07:00
|
|
|
|
|
|
|
[dependencies]
|
2023-11-10 23:38:56 -07:00
|
|
|
entity = { workspace = true }
|
|
|
|
maps = { workspace = true }
|
|
|
|
networking = { workspace = true }
|
|
|
|
shops = { workspace = true }
|
|
|
|
stats = { workspace = true }
|
2023-11-11 14:28:41 -07:00
|
|
|
items = { workspace = true }
|
|
|
|
pktbuilder = { workspace = true }
|
|
|
|
quests = { workspace = true }
|
|
|
|
location = { workspace = true }
|
|
|
|
client = { workspace = true }
|
|
|
|
drops = { workspace = true }
|
|
|
|
trade = { workspace = true }
|
|
|
|
room = { workspace = true }
|
2023-11-10 23:38:56 -07:00
|
|
|
|
|
|
|
libpso = { workspace = true }
|
|
|
|
|
|
|
|
ages-prs = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
async-recursion = { workspace = true }
|
|
|
|
async-std = { workspace = true }
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
bcrypt = { workspace = true }
|
|
|
|
byteorder = { workspace = true }
|
2023-11-10 21:37:23 -07:00
|
|
|
chrono = { workspace = true }
|
2023-11-10 23:38:56 -07:00
|
|
|
crc = { workspace = true }
|
|
|
|
derive_more = { workspace = true }
|
|
|
|
enum-utils = { workspace = true }
|
|
|
|
fern = { workspace = true }
|
|
|
|
futures = { workspace = true }
|
|
|
|
log = { workspace = true }
|
|
|
|
rand = { workspace = true }
|
|
|
|
rand_chacha = { workspace = true }
|
|
|
|
ron = { workspace = true }
|
|
|
|
serde = { workspace = true }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
toml = { workspace = true }
|
|
|
|
thiserror = { workspace = true }
|