-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (33 loc) · 946 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
[package]
name = "fedora"
description = "Base library for interacting with Fedora web services"
license = "MIT OR Apache-2.0"
version = "2.1.2"
edition = "2021"
rust-version = "1.67.0"
authors = ["Fabio Valentini <[email protected]>"]
readme = "README.md"
exclude = ["/.github/", "/rustfmt.toml"]
categories = ["api-bindings"]
keywords = ["fedora", "client", "authentication", "openid"]
repository = "https://github.com/ironthree/fedora-rs"
[features]
default = []
[dependencies]
bytes = "1.1"
cookie = "0.16"
cookie_store = "0.16"
dirs = "5"
log = "0.4.14"
reqwest = { version = "0.11.11", features = ["cookies"] }
serde = { version = "1.0.134", features = ["derive"] }
serde_json = "1.0.78"
thiserror = "1.0.30"
url = "^2.2.2"
[dev-dependencies]
# only needed for example code
env_logger = "0.10"
rpassword = "7"
tokio = { version = "1.14.0", features = ["macros", "rt-multi-thread"] }
[badges]
maintenance = { status = "deprecated" }