1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-website/Cargo.toml

36 lines
738 B
TOML
Raw Normal View History

2020-10-13 19:25:14 -04:00
[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]
2020-10-14 19:38:55 -04:00
bcrypt = "0.8.2"
dotenv = "0.15.0"
2020-10-14 16:27:21 -04:00
r2d2 = "0.8.9"
2020-10-14 22:29:27 -04:00
regex = "1.4.1"
2020-10-13 19:36:58 -04:00
rocket = "0.4.5"
2020-10-13 20:13:00 -04:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
2020-10-13 20:01:25 -04:00
2020-10-14 16:27:21 -04:00
[dependencies.diesel]
version = "1.4.5"
features = ["postgres", "r2d2"]
2020-10-13 20:01:25 -04:00
[dependencies.rocket_contrib]
version = "0.4.5"
2020-10-15 13:37:35 -04:00
features = ["diesel_postgres_pool", "handlebars_templates"]
2020-10-14 22:55:15 -04:00
[dependencies.validator]
version = "0.11.0"
features = ["derive"]