-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (42 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (42 loc) · 1.15 KB
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
46
47
48
49
50
[package]
name = "urlexpand"
version = "0.3.0"
description = "Expand / Unshorten an exhaustive list of Shortened URL's"
authors = ["Marirs <marirs@gmail.com>"]
keywords = ["expand", "unshorten", "unshort", "url", "link"]
categories = ["web-programming"]
repository = "https://github.com/marirs/urlexpand"
homepage = "https://github.com/marirs/urlexpand"
license-file = "LICENSE"
readme = "README.md"
edition = "2024"
[dependencies]
base64 = "0.22.1"
futures = "0.3.21"
percent-encoding = "2.1.0"
regex = "1"
reqwest = { version = "0.13.1", features = ["native-tls-vendored", "json"] }
serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2"
tokio = { version = "1.19.2", optional = true, features = ["rt", "rt-multi-thread"] }
url = "2.2.2"
[dev-dependencies]
paste = "1.0.7"
tokio = { version = "1.19.2", features = ["macros", "rt-multi-thread"] }
[package.metadata.docs.rs]
all-features = true
[features]
blocking = ["tokio"]
[badges]
travis-ci = { repository = "marirs/urlexpand" }
[lib]
name = "urlexpand"
path = "src/lib.rs"
[profile.dev]
opt-level = 3
[profile.release]
codegen-units = 1
debug-assertions = false
debug = false
opt-level = 3
lto = true