-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
95 lines (79 loc) · 2.17 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[package]
authors = ["realaravinth <realaravinth@batsense.net>"]
build = "build.rs"
description = "Self-Hosted GitHub Gists"
documentation = "https://github.con/realaravinth/gitpad"
edition = "2021"
homepage = "https://github.com/realaravinth/gitpad"
license = "AGPLv3 or later version"
name = "gitpad"
readme = "https://github.com/realaravinth/gitpad/blob/master/README.md"
repository = "https://github.com/realaravinth/gitpad"
version = "0.1.0"
[build-dependencies]
mime = "0.3.16"
serde_json = "1"
[build-dependencies.cache-buster]
git = "https://github.com/realaravinth/cache-buster"
[dependencies]
actix-http = "3.0.0-rc.2"
actix-identity = "0.4.0-beta.8"
actix-rt = "2.6.0"
actix-web = "4.0.0-rc.3"
config = "0.11"
derive_more = "0.99"
futures = "0.3.21"
git2 = "0.13.25"
lazy_static = "1.4"
log = "0.4"
mime = "0.3.16"
mime_guess = "2.0.3"
num_cpus = "1.13"
num_enum = "0.5.6"
pretty_env_logger = "0.4"
pulldown-cmark = "*"
rand = "0.8.4"
rust-embed = "6.3.0"
serde_json = "1"
syntect = "*"
url = "2.2"
urlencoding = "2.1.0"
[dependencies.actix-auth-middleware]
branch = "v4"
features = ["actix_identity_backend"]
git = "https://github.com/realaravinth/actix-auth-middleware"
version = "0.2"
[dependencies.argon2-creds]
branch = "master"
git = "https://github.com/realaravinth/argon2-creds"
[dependencies.cache-buster]
git = "https://github.com/realaravinth/cache-buster"
[dependencies.db-core]
path = "./database/db-core"
[dependencies.db-sqlx-postgres]
path = "./database/db-sqlx-postgres"
[dependencies.db-sqlx-sqlite]
path = "./database/db-sqlx-sqlite"
[dependencies.my-codegen]
git = "https://github.com/realaravinth/actix-web"
package = "actix-web-codegen"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.sqlx]
features = ["runtime-actix-rustls", "uuid", "postgres", "time", "offline", "sqlite"]
version = "0.5.10"
[dependencies.tera]
default-features = false
version = "1.15.0"
[dependencies.tokio]
features = ["fs"]
version = "1.16.1"
[dependencies.validator]
features = ["derive"]
version = "0.14.0"
[dev-dependencies]
actix-rt = "2"
[workspace]
exclude = ["database/migrator"]
members = [".", "database/db-core", "database/db-sqlx-postgres", "database/db-sqlx-sqlite"]