-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
60 lines (46 loc) · 1.52 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
[workspace]
resolver = "2"
members = ["crates/*"]
[profile.release]
lto = true
panic = "abort"
codegen-units = 1
[profile.dev.package.backtrace]
opt-level = 3
[workspace.package]
authors = ["SEKUN <software@sekun.net>"]
edition = "2021"
homepage = "https://github.com/sekunho/puggle"
include = ["../../LICENSE", "**/*.rs", "Cargo.toml"]
license = "AGPL-3.0-only"
repository = "https://github.com/sekunho/puggle"
rust-version = "1.79"
version = "0.1.0-alpha"
[workspace.dependencies]
puggle = { path = "crates/puggle", version = "0.1.0-alpha" }
puggle_lib = { path = "crates/puggle_lib", version = "0.1.0-alpha" }
puggle_server = { path = "crates/puggle_server", version = "0.1.0-alpha" }
# External dependencies
## Markdown
pulldown-cmark = { version = "0.12" }
highlight-pulldown = { version = "0.2" }
## Deserializing/serializing
serde = { version = "1.0", features = ["derive"] }
serde_yml = "0.0.10"
## Web
axum = { version = "0.7", features = ["macros"] }
tower-http = { version = "0.5", features = ["fs"] }
## Templating
minijinja = { version = "2.0", features = ["loader", "multi_template"] }
minijinja-contrib = { version = "2.0", features = ["datetime"] }
## Async
tokio = { version = "1.40", features = ["net", "rt-multi-thread"] }
## Configuration
config = { version = "0.13", default-features = false, features = ["yaml"] }
## CLI
clap = { version = "4.5", features = ["derive"] }
## Errors
thiserror = { version = "1.0" }
color-eyre = { version = "0.6.3" }
## Types
time = { version = "0.3", features = ["serde-well-known"] }