-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (27 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
28 lines (27 loc) · 1.15 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
[package]
name = "flair"
version = "0.0.2"
edition = "2021"
authors = ["Tristan Isham <tristan@isham.co>"]
description = "Flair is an augmentation for Lemmy, adding user flairs like Reddit"
repository = "https://github.com/basedcount/flair/"
license = "MIT"
documentation = "https://docs.rs/flair"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi_term = { version = "0.12.1", features = ["serde"] }
anyhow = "1.0.75"
axum = { version = "0.6.20", features = ["json", "macros", "headers"] }
chrono = { version = "0.4.29", features = ["serde"] }
clap = { version = "4.4.2", features = ["derive"] }
deadpool-sqlite = { version = "0.5.0", features = ["rt_tokio_1", "serde"] }
dotenv = "0.15.0"
reqwest = { version = "0.11.22", features = ["json"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.105"
tokio = { version = "1.32.0", features = ["full"] }
tokio-postgres = "0.7.10"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["serde", "serde_json"] }
ts-rs = { version = "7.0.0", features = ["uuid", "url", "chrono", "chrono-impl"] }
urlencoding = "2.1.3"