-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (31 loc) · 1.08 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
[package]
name = "shellmark"
version = "0.3.0"
authors = ["Artem Pyanykh <[email protected]>"]
edition = "2021"
license-file = "LICENSE"
description = "Cross-platform bookmark mananger for your shell"
documentation = "https://docs.rs/shellmark"
readme = "README.md"
repository = "https://github.com/artempyanykh/shellmark"
homepage = "https://github.com/artempyanykh/shellmark"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
clap = {version = "4.5.0", features = ["derive", "cargo"]}
crossterm = {version = "0.27", features = ["event-stream"]}
derivative = "2.2"
directories = "5.0"
futures = "0.3"
fuzzy-matcher = "0.3"
once_cell = "1.19"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = {version = "1.38", features = ["full"]}
tokio-stream = "0.1"
tracing = "0.1"
tracing-futures = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tui = {version = "0.19", default-features = false, features = ["crossterm"]}
[target.'cfg(windows)'.dependencies]
dunce = "1.0"