-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (69 loc) · 2.01 KB
/
Copy pathCargo.toml
File metadata and controls
83 lines (69 loc) · 2.01 KB
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
# This file is part of safe_house - a simple E2E encrypted file sharing utility.
# Copyright (c) 2026 Yuki Donath <https://dotstart.tv> and other contributors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
[package]
name = "safe_house"
version = "0.1.0"
edition = "2024"
repository = "https://github.com/dotstart/safe_house"
license = "AGPL-3"
[features]
default = ["ratelimit"]
ratelimit = ["dep:dashmap", "dep:governor"]
ui = ["dep:rust-embed"]
[dependencies]
base32 = "0.5.1"
bcrypt = "0.19.0"
byteorder = "1.5.0"
nonzero_ext = "0.3.0"
rmp-serde = "1.3.1"
tokio-util = "0.7.18"
zxcvbn = "3.1.0"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.config]
version = "0.15.22"
features = ["toml", "convert-case"]
default-features = false
[dependencies.dashmap]
version = "6.1.0"
optional = true
[dependencies.governor]
version = "0.10.4"
optional = true
[dependencies.jsonwebtoken]
version = "10.3.0"
features = ["rust_crypto"]
default-features = false
[dependencies.rand]
version = "0.10.1"
features = ["thread_rng"]
[dependencies.rocket]
version = "0.5.1"
features = ["json"]
[dependencies.rocksdb]
version = "0.24.0"
features = ["multi-threaded-cf"]
[dependencies.rust-embed]
version = "8.11.0"
features = ["compression", "deterministic-timestamps", "rocket"]
optional = true
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_with]
version = "3.18.0"
features = ["base64"]