summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: f64cf4545168842987661a32789f2259275cec2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "sbm-rs"
version = "0.1.0"
description = "Simple bookmarks manager written in Rust"
authors = ["Naz <ndpm13@ch-naseem.com>"]
license = "MIT"
repository = "https://git.ch-naseem.com/ndpm13/sbm-rs"
homepage = "https://git.ch-naseem.com/ndpm13/sbm-rs"
edition = "2024"

[dependencies]
askama = "0.14.0"
axum = { version = "0.8.4", features = ["macros"] }
clap = { version = "4.5.48", features = ["derive"] }
colored = "3.0.0"
derive_more = { version = "2.0.1", features = ["from"] }
serde = { version = "1.0.223", features = ["derive"] }
serde_json = "1.0.145"
tokio = { version = "1.47.1", features = ["full"] }
toml = "0.9.5"
tower-http = { version = "0.6.6", features = ["fs", "trace"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }