-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (39 loc) · 962 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "getpocket"
version = "0.2.5-rc3"
edition = "2021"
description = "Rust crate for GetPocket API (https://getpocket.com/)"
repository = "https://github.com/misha-krainik/GetPocket.rs"
license-file = "LICENSE.txt"
rust-version = "1.65"
authors = ["Mykhailo Krainik <[email protected]>"]
keywords = ["getpocket", "afterread", "pocket", "api", "rust"]
categories = ["api"]
readme = "README.md"
exclude = [
".gitignore",
]
[features]
default = []
extended = []
[dependencies]
anyhow = "1"
async-trait = "0.1"
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_qs = "0.12.0"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
[[example]]
name = "list"
path = "examples/list.rs"
[[example]]
name = "add"
path = "examples/add.rs"
[[example]]
name = "modify"
path = "examples/modify.rs"
[dev-dependencies]
webbrowser = "0.8.3"
lazy_static = "1.4.0"