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.
97 lines
2.5 KiB
97 lines
2.5 KiB
[package]
|
|
name = "elseware"
|
|
version = "0.1.0"
|
|
authors = ["Jake Probst <jake.probst@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
members = [
|
|
"src/client",
|
|
"src/drops",
|
|
"src/entity",
|
|
"src/items",
|
|
"src/location",
|
|
"src/maps",
|
|
"src/networking",
|
|
"src/pktbuilder",
|
|
"src/quests",
|
|
"src/room",
|
|
"src/shops",
|
|
"src/stats",
|
|
"src/trade",
|
|
"src/patch_server",
|
|
"src/login_server",
|
|
"src/ship_server",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
entity = { path = "./src/entity" }
|
|
maps = { path = "./src/maps" }
|
|
networking = { path = "./src/networking" }
|
|
shops = { path = "./src/shops" }
|
|
stats = { path = "./src/stats" }
|
|
items = { path = "./src/items" }
|
|
pktbuilder = { path = "./src/pktbuilder" }
|
|
quests = { path = "./src/quests" }
|
|
location = { path = "./src/location" }
|
|
client = { path = "./src/client" }
|
|
drops = { path = "./src/drops" }
|
|
trade = { path = "./src/trade" }
|
|
room = { path = "./src/room" }
|
|
patch_server = { path = "./src/patch_server" }
|
|
login_server = { path = "./src/login_server" }
|
|
ship_server = { path = "./src/ship_server" }
|
|
|
|
libpso = { git = "http://git.sharnoth.com/jake/libpso", rev="90246b6" }
|
|
|
|
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"
|
|
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 }
|
|
patch_server = { workspace = true }
|
|
login_server = { workspace = true }
|
|
ship_server = { workspace = true }
|
|
|
|
libpso = { workspace = true }
|
|
|
|
async-std = { workspace = true }
|
|
bcrypt = { workspace = true }
|
|
chrono = { workspace = true }
|
|
fern = { workspace = true }
|
|
futures = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
drops = { workspace = true }
|
|
shops = { workspace = true }
|
|
items = { workspace = true }
|
|
quests = { workspace = true }
|
|
stats = { workspace = true }
|
|
async-trait = { workspace = true }
|