-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (29 loc) 路 916 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (29 loc) 路 916 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
28
29
30
31
[workspace]
resolver = "2"
members = ["crates/cs-grep-core", "crates/cs-grep"]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.95"
description = "Fast local search across computer science research literature"
license = "MIT"
repository = "https://github.com/philippnormann/cs-grep"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
rusqlite = { version = "0.40", features = ["bundled"] }
reqwest = { version = "0.13", default-features = false, features = ["rustls", "json", "gzip", "query"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
futures = "0.3"
clap = { version = "4", features = ["derive"] }
thiserror = "2"
anyhow = "1"
dotenvy = "0.15"
scraper = "0.27"
csv = "1"
ratatui = { version = "0.30", features = ["crossterm_0_29"] }
crossterm = "0.29"
directories = "6"
tempfile = "3"
url = "2"