-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (28 loc) · 818 Bytes
/
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
[package]
name = "readlater"
version = "0.1.0"
edition = "2021"
[dependencies]
url = {version = "2.5.4", features = ["serde"]}
pocket = {path = "pkg/pocket"}
anyhow = "1.0.95"
dotenv = "0.15.0"
clap = { version = "4.5.27", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
open = "5.3.2"
native_messaging = "0.1.1"
serde_json = "1.0.138"
serde = { version = "1.0", features = ["derive"] }
figment = { version = "0.10", features = ["toml", "env"] }
dirs = "6.0.0"
[workspace]
members = [
"pkg/pocket", "pkg/util",
]
[workspace.dependencies]
thiserror = "2.0.11"
serde_json = "1.0.138"
serde = { version = "1.0", features = ["derive"] }
url = {version = "2.5.4", features = ["serde"]}
reqwest = { version = "0.12.12", features = ["json"] }
insta = {version = "1.42.1", features = ["json"]}