35 lines
738 B
TOML
35 lines
738 B
TOML
[package]
|
|
name = "fedihub-registry"
|
|
version = "0.0.0"
|
|
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
|
edition = "2018"
|
|
description = "User registry"
|
|
readme = "README.md"
|
|
homepage = "https://fedihub.com"
|
|
repository = "https://github.com/fedihubcom/registry"
|
|
license-file = "LICENSE"
|
|
keywords = ["web"]
|
|
categories = []
|
|
publish = true
|
|
|
|
[dependencies]
|
|
bcrypt = "0.8.2"
|
|
dotenv = "0.15.0"
|
|
r2d2 = "0.8.9"
|
|
regex = "1.4.1"
|
|
rocket = "0.4.5"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_json = "1.0"
|
|
|
|
[dependencies.diesel]
|
|
version = "1.4.5"
|
|
features = ["postgres", "r2d2"]
|
|
|
|
[dependencies.rocket_contrib]
|
|
version = "0.4.5"
|
|
features = ["diesel_postgres_pool", "handlebars_templates"]
|
|
|
|
[dependencies.validator]
|
|
version = "0.11.0"
|
|
features = ["derive"]
|