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.
106 lines
2.6 KiB
106 lines
2.6 KiB
[package]
|
|
name = "elseware"
|
|
version = "0.1.0"
|
|
authors = ["Jake Probst <jake.probst@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"client",
|
|
"drops",
|
|
"entity",
|
|
"items",
|
|
"location",
|
|
"maps",
|
|
"networking",
|
|
"pktbuilder",
|
|
"quests",
|
|
"room",
|
|
"shops",
|
|
"stats",
|
|
"trade",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
entity = { path = "./entity" }
|
|
maps = { path = "./maps" }
|
|
networking = { path = "./networking" }
|
|
shops = { path = "./shops" }
|
|
stats = { path = "./stats" }
|
|
items = { path = "./items" }
|
|
pktbuilder = { path = "./pktbuilder" }
|
|
quests = { path = "./quests" }
|
|
location = { path = "./location" }
|
|
client = { path = "./client" }
|
|
drops = { path = "./drops" }
|
|
trade = { path = "./trade" }
|
|
room = { path = "./room" }
|
|
|
|
libpso = { git = "http://git.sharnoth.com/jake/libpso" }
|
|
|
|
async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
|
|
futures = "0.3.5"
|
|
rand = "0.7.3"
|
|
rand_chacha = "0.2.2"
|
|
crc = "^1.0.0"
|
|
bcrypt = "0.10"
|
|
chrono = "0.4.11"
|
|
serde = "*"
|
|
serde_json = "*"
|
|
ron = "*"
|
|
toml = "*"
|
|
log = "*"
|
|
fern = { version = "0.5", features = ["colored"] }
|
|
byteorder = "1"
|
|
enum-utils = "0.1.2"
|
|
derive_more = { version = "0.99.3", features = ["display"]}
|
|
thiserror = "1.0.37"
|
|
ages-prs = "0.1"
|
|
async-trait = "0.1.51"
|
|
async-recursion= "1.0.0"
|
|
lazy_static = "1.4.0"
|
|
barrel = { version = "0.6.5", features = ["pg"] }
|
|
refinery = { version = "0.5.0", features = ["postgres"] }
|
|
sqlx = { version = "0.6.2", features = ["runtime-async-std-native-tls", "postgres", "json", "chrono"] }
|
|
strum = "0.19.5"
|
|
strum_macros = "0.19"
|
|
anyhow = { version = "1.0.68", features = ["backtrace"] }
|
|
|
|
[dependencies]
|
|
entity = { workspace = true }
|
|
maps = { workspace = true }
|
|
networking = { workspace = true }
|
|
shops = { workspace = true }
|
|
stats = { workspace = true }
|
|
items = { workspace = true }
|
|
pktbuilder = { workspace = true }
|
|
quests = { workspace = true }
|
|
location = { workspace = true }
|
|
client = { workspace = true }
|
|
drops = { workspace = true }
|
|
trade = { workspace = true }
|
|
room = { workspace = true }
|
|
|
|
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 }
|
|
chrono = { workspace = true }
|
|
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 }
|