mirror of https://github.com/realaravinth/gitpad
54 lines
1.7 KiB
TOML
54 lines
1.7 KiB
TOML
[package]
|
|
name = "gists"
|
|
description = "Self-Hosted GitHub Gists"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
homepage = "https://github.com/realaravinth/gists"
|
|
repository = "https://github.com/realaravinth/gists"
|
|
documentation = "https://github.con/realaravinth/gists"
|
|
readme = "https://github.com/realaravinth/gists/blob/master/README.md"
|
|
license = "AGPLv3 or later version"
|
|
authors = ["realaravinth <realaravinth@batsense.net>"]
|
|
build = "build.rs"
|
|
|
|
[workspace]
|
|
exclude = ["database/migrator"]
|
|
members = [
|
|
".",
|
|
"database/db-core",
|
|
"database/db-sqlx-postgres",
|
|
"database/db-sqlx-sqlite",
|
|
]
|
|
|
|
[dependencies]
|
|
actix-auth-middleware = { branch="v4", version = "0.2", git = "https://github.com/realaravinth/actix-auth-middleware", features = ["actix_identity_backend"] }
|
|
actix-web = "4.0.0-rc.3"
|
|
actix-http = "3.0.0-rc.2"
|
|
actix-identity = "0.4.0-beta.8"
|
|
actix-rt = "2.6.0"
|
|
argon2-creds = { branch = "master", git = "https://github.com/realaravinth/argon2-creds"}
|
|
config = "0.11"
|
|
db-core = {path = "./database/db-core"}
|
|
db-sqlx-postgres = {path = "./database/db-sqlx-postgres"}
|
|
db-sqlx-sqlite = {path = "./database/db-sqlx-sqlite"}
|
|
derive_more = "0.99"
|
|
futures = "0.3.21"
|
|
git2 = "0.13.25"
|
|
lazy_static = "1.4"
|
|
log = "0.4"
|
|
my-codegen = {package = "actix-web-codegen", git ="https://github.com/realaravinth/actix-web"}
|
|
num_cpus = "1.13"
|
|
pretty_env_logger = "0.4"
|
|
rand = "0.8.4"
|
|
serde = { version = "1", features = ["derive"]}
|
|
serde_json = "1"
|
|
sqlx = { version = "0.5.10", features = [ "runtime-actix-rustls", "uuid", "postgres", "time", "offline", "sqlite" ] }
|
|
tokio = { version = "1.16.1", features = ["fs"] }
|
|
url = "2.2"
|
|
urlencoding = "2.1.0"
|
|
validator = { version = "0.14.0", features = ["derive"] }
|
|
num_enum = "0.5.6"
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2"
|