-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
28 lines (25 loc) · 1.07 KB
/
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
[package]
name = "clearurls"
version = "0.0.4"
edition = "2021"
authors = ["jendrikw"]
description = "Clear URLS from tracking parameters with crowd-sourced rules from https://clearurls.xyz"
categories = ["network-programming", "web-programming"]
keywords = ["clean", "clear", "url"]
repository = "https://github.com/jendrikw/clearurls"
license = "LGPL-3.0-only"
[features]
std = ["serde/std", "serde_json/std", "regex/std"]
default = ["std"]
markdown-it = ["dep:markdown-it", "dep:linkify", "std"]
linkify = ["dep:linkify"]
[dependencies]
serde = { version = "1.0.204", default-features = false, features = ["derive", "alloc"] }
serde_json = { version = "1.0.122" , default-features = false, features = ["alloc"]}
regex = { version = "1.10.5", default-features = false, features = ["unicode"] }
percent-encoding = { version = "2.3.1" , default-features = false, features = ["alloc"]}
url = "2.5.2"
markdown-it = { version = "0.6.1", default-features = false, features = ["linkify"], optional = true }
linkify = { version = "0.10.0", optional = true }
[dev-dependencies]
tempfile = "3.11.0"