-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (51 loc) · 1.08 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
[package]
name = "weekend"
version = "0.1.0"
edition = "2021"
[dependencies]
diff = "0.1.13"
futures = "0.3.28"
password-hash = "0.5.0"
pbkdf2 = { version = "0.12.1", features = ["simple"] }
patch = "0.7.0"
slug = "0.1.4"
tantivy = "0.22"
thiserror = "1.0.40"
tower = "0.5"
tower-http = { version = "0.6", features = ["fs"] }
unified-diff = "0.2.1"
sha2 = "0.10.6"
hmac = "0.12.1"
base58 = "0.2.0"
tracing = "0.1"
tracing-subscriber = "0.3"
[dependencies.axum]
version = "0.7"
features = ["form"]
[dependencies.axum-macros]
version = "0.4"
[dependencies.axum-extra]
version = "0.9"
features = ["typed-header"]
[dependencies.askama]
version = "0.12"
features = ["markdown"]
[dependencies.comrak]
version = "0.32"
default-features = false
features = []
[dependencies.bincode]
git = "https://github.com/bincode-org/bincode"
tag = "v2.0.0-rc.3"
[dependencies.tokio]
version = "1"
features = ["macros", "rt-multi-thread"]
[dependencies.serde]
version = "1"
features = ["derive"]
# TODO: Use system lib.
[dependencies.rocksdb]
version = "0.23.0"
features = ["serde"]
[build-dependencies]
quote = "1"