feat(core/database): add Reference struct

This commit is contained in:
Paul Makles
2023-04-23 14:59:44 +01:00
parent 8a695b4bb5
commit 1933c9ea3d
7 changed files with 67 additions and 6 deletions

View File

@@ -14,6 +14,7 @@ mongodb = [ "dep:mongodb" ]
# ... Other
async-std-runtime = [ "async-std" ]
rocket-impl = [ "rocket", "schemars" ]
# Default Features
default = [ "mongodb", "async-std-runtime" ]
@@ -42,5 +43,9 @@ async-recursion = "1.0.4"
# Async
async-std = { version = "1.8.0", features = ["attributes"], optional = true }
# Rocket Impl
schemars = { version = "0.8.8", optional = true }
rocket = { version = "0.5.0-rc.2", default-features = false, features = ["json"], optional = true }
# Authifier
authifier = { version = "1.0" }