forked from coreyja/coreyja.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
75 lines (63 loc) · 1.71 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
[workspace]
members = [
"byte",
"cja",
"db",
"posts",
"server",
"tracing-common",
"video-toolkit",
]
resolver = "2"
[workspace.lints.clippy]
pedantic = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
blocks_in_conditions = "allow"
must_use_candidate = "allow"
no-effect-underscore-binding = "allow"
items-after-statements = "allow"
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.dependencies]
clap = { version = "4.2", features = ["derive"] }
reqwest = { version = "0.11.12", features = [
"json",
"rustls-tls",
], default-features = false }
miette = { version = "5.7", features = ["fancy"] }
tokio = { version = "1.21", features = ["full"] }
tracing = "0.1.37"
tracing-opentelemetry = "0.19.0"
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
tracing-tree = "0.2.2"
opentelemetry = { version = "0.19.0", features = [
"rt-tokio",
], default-features = false }
opentelemetry-otlp = { version = "0.12.0", features = [
"http-proto",
"reqwest-rustls",
"reqwest-client",
], default-features = false }
cacache = { version = "11.6.0", default-features = false, features = [
"tokio-runtime",
] }
ssri = "9.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.23", default-features = false, features = ["serde"] }
rss = { version = "2.0", features = ["validation"] }
markdown = "1.0.0-alpha"
include_dir = { version = "0.7.3", features = ["metadata", "glob"] }
path-absolutize = "3.0"
sqlx = { version = "0.7", features = [
"postgres",
"runtime-tokio-rustls",
"chrono",
"migrate",
"macros",
"uuid",
] }
uuid = { version = "1.6.1", features = ["v4", "serde"] }
base64 = "0.21.7"