-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (54 loc) · 1.63 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "bogrep"
version = "0.10.1"
edition = "2021"
authors = ["quambene <[email protected]>"]
description = "Full-text search for bookmarks from multiple browsers"
homepage = "https://github.com/quambene/bogrep"
repository = "https://github.com/quambene/bogrep"
documentation = "https://docs.rs/bogrep"
keywords = ["bookmarks", "full-text-search", "grep", "cli"]
categories = ["command-line-utilities", "text-processing"]
readme = "README.md"
license = "Apache-2.0"
[[bench]]
name = "fetch"
harness = false
[dependencies]
chrono = "0.4.26"
anyhow = "1.0.72"
thiserror = "2.0"
log = "0.4.19"
env_logger = "0.11"
dirs = "5.0.1"
url = "2.5.0"
clap = { version = "4.3.19", features = ["derive"] }
reqwest = { version = "0.12", default-features = false, features = ["http2", "charset", "macos-system-configuration", "rustls-tls", "trust-dns"] }
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "fs", "time", "signal"] }
futures = "0.3.28"
async-trait = "0.1.73"
parking_lot = "0.12.1"
uuid = { version = "1.4.1", features = ["v4"] }
serde = { version = "1.0.175", features = ["derive"] }
serde_json = "1.0.103"
markup5ever = "0.14"
html5ever = "0.29"
html2md = "0.2.14"
readability-rs = "0.5.0"
scraper = "0.22"
regex = "1.9.1"
colored = "2.0.4"
lz4 = "1.24.0"
similar = "2.2.1"
plist = "1.6.0"
infer = "0.16"
rlimit = "0.10.2"
tendril = "0.4.3"
[dev-dependencies]
assert_cmd = "2.0.12"
predicates = "3.0.4"
tempfile = "3.8.0"
wiremock = "0.6"
criterion = { version = "0.5.1", features = ["async_tokio"] }
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros", "fs", "time", "test-util"] }
assert_matches = "1.5.0"