-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 721 Bytes
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
[package]
name = "shmarks"
version = "0.1.13"
edition = "2021"
authors = ["Belkanov Dmitriy <dbkkll@yandex.ru>"]
description = "Directory bookmarks for the shell."
license = "GPL-3.0-only"
categories = ["command-line-interface", "command-line-utilities"]
homepage = "https://github.com/ybda/shmarks"
repository = "https://github.com/ybda/shmarks"
readme = "README.md"
exclude = [
".vscode"
]
rust-version = "1.79.0"
[lints.rust]
unsafe_code = "forbid"
[dependencies]
clap = { version = "4.5.21", features = ["cargo", "derive"] }
dirs = "5.0.1"
indexmap = { version = "2.6.0", features = ["serde"] }
nu-ansi-term = "0.50"
regex = "1.11"
thiserror = "2.0"
toml = { version = "0.8.19", features = ["preserve_order"] }