-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 592 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 592 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
[package]
name = "urlshortener"
version = "4.1.0"
edition = "2021"
authors = ["Victor Polevoy <maintainer@vpolevoy.com>"]
description = "A very simple url shortener client library"
readme = "README.md"
license = "MIT"
keywords = ["url", "short", "shortener", "link"]
repository = "https://github.com/iddm/urlshortener-rs"
documentation = "https://docs.rs/urlshortener"
[dependencies]
url = "2"
[dependencies.reqwest]
version = "0.13"
default-features = false
features = ["json", "http2", "stream", "blocking", "rustls"]
optional = true
[features]
default = ["client"]
client = ["reqwest"]