freechat/json-api/db/Cargo.toml
shockrah 181b1cadc4 + Exposing serde_json to db-lib lyaer
This dep was already there but just being used (as we're using serde). Now we can use it at the db layer which makes neighbor struct creation easier
* Cargo locks are being updated to reflect new dependancy changes
These changes actually reduce the dependancy count overall
+ Adding a very simple table to hold all the neighbors that an instance may want to reference
At some point we may want to support vanity join urls and this would be a good place to reference those
There would also need to be a way for admins to add/edit/remove vanity urls but that's for another patch
2021-05-06 13:29:32 -07:00

16 lines
298 B
TOML

[package]
name = "db"
version = "0.1.0"
authors = ["shockrah <alejandros714@protonmail.com>"]
edition = "2018"
[dependencies]
mysql_async = "0.27"
serde = { version = "1.0.117", features = [ "derive" ] }
serde_json = "1.0"
tokio = { version = "1", features = ["fs", "io-util"] }
rand = "0.8.3"