clean up toplevel cargo.toml a bit

This commit is contained in:
jake 2023-11-10 23:38:56 -07:00 committed by andy
parent 7020f38863
commit a76bb8945c

View File

@ -14,12 +14,14 @@ members = [
] ]
[workspace.dependencies] [workspace.dependencies]
libpso = { git = "http://git.sharnoth.com/jake/libpso" }
entity = { path = "./entity" } entity = { path = "./entity" }
maps = { path = "./maps" } maps = { path = "./maps" }
networking = { path = "./networking" } networking = { path = "./networking" }
shops = { path = "./shops" } shops = { path = "./shops" }
stats = { path = "./stats" } stats = { path = "./stats" }
libpso = { git = "http://git.sharnoth.com/jake/libpso" }
async-std = { version = "1.9.0", features = ["unstable", "attributes"] } async-std = { version = "1.9.0", features = ["unstable", "attributes"] }
futures = "0.3.5" futures = "0.3.5"
rand = "0.7.3" rand = "0.7.3"
@ -49,36 +51,32 @@ strum_macros = "0.19"
anyhow = { version = "1.0.68", features = ["backtrace"] } anyhow = { version = "1.0.68", features = ["backtrace"] }
[dependencies] [dependencies]
libpso = { git = "http://git.sharnoth.com/jake/libpso" } entity = { workspace = true }
entity = { path = "./entity" } maps = { workspace = true }
maps = { path = "./maps" } networking = { workspace = true }
networking = { path = "./networking" } shops = { workspace = true }
shops = { path = "./shops" } stats = { workspace = true }
stats = { path = "./stats" }
async-std = { version = "1.9.0", features = ["unstable", "attributes"] } libpso = { workspace = true }
futures = "0.3.5"
rand = "0.7.3" ages-prs = { workspace = true }
rand_chacha = "0.2.2" anyhow = { workspace = true }
crc = "^1.0.0" async-recursion = { workspace = true }
bcrypt = "0.10" async-std = { workspace = true }
async-trait = { workspace = true }
bcrypt = { workspace = true }
byteorder = { workspace = true }
chrono = { workspace = true } chrono = { workspace = true }
serde = "*" crc = { workspace = true }
serde_json = "*" derive_more = { workspace = true }
ron = "*" enum-utils = { workspace = true }
toml = "*" fern = { workspace = true }
log = "*" futures = { workspace = true }
fern = { version = "0.5", features = ["colored"] } log = { workspace = true }
byteorder = "1" rand = { workspace = true }
enum-utils = "0.1.2" rand_chacha = { workspace = true }
derive_more = { version = "0.99.3", features = ["display"]} ron = { workspace = true }
thiserror = "1.0.37" serde = { workspace = true }
ages-prs = "0.1" serde_json = { workspace = true }
async-trait = "0.1.51" toml = { workspace = true }
async-recursion= "1.0.0" thiserror = { workspace = true }
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 = { workspace = true }