-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 1.03 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
[package]
name = "bkm"
version = "0.2.2"
edition = "2021"
authors = ["João Vitor Silveira Ribeiro <joaovitorsrs7@gmail.com>"]
license-file = "LICENSE"
description = "A terminal-based book manager"
homepage = "https://github.com/joao-vitor-sr/bkm"
repository = "https://github.com/joao-vitor-sr/bkm"
documentation = "https://github.com/joao-vitor-sr/bkm"
readme = "README.md"
keywords = ["tui", "terminal", "bin", "books", "book"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
clap = { version = "4.0.27", features = ["derive"] }
crossterm = "0.25.0"
dirs = "4.0.0"
rusqlite = { version = "0.28.0", features = ["bundled"] }
tui = "0.19.0"
unicode-width = "0.1.10"
[dependencies.uuid]
version = "1.2.2"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]