Skip to content

Commit ca0d9fe

Browse files
committed
initial code
1 parent 19f2073 commit ca0d9fe

10 files changed

+914
-669
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target/
2+
/.idea/

Cargo.lock

+202
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "clearurls"
3+
version = "0.0.1"
4+
edition = "2021"
5+
authors = ["jendrikw"]
6+
description = "Clear URLS from tracking parameters with crowd-sourced rules from https://clearurls.xyz"
7+
categories = ["network-programming", "web-programming"]
8+
keywords = ["clean", "clear", "url"]
9+
repository = "https://github.com/jendrikw/clearurls"
10+
license = "LGPL-3.0-only"
11+
12+
[features]
13+
std = ["serde/std", "serde_json/std", "regex/std"]
14+
default = ["std"]
15+
16+
[dependencies]
17+
serde = { version = "1.0.204", default-features = false, features = ["derive", "alloc"] }
18+
serde_json = { version = "1.0.120" , default-features = false, features = ["alloc"]}
19+
regex = { version = "1.10.5", default-features = false, features = ["unicode"] }
20+
percent-encoding = { version = "2.3.1" , default-features = false, features = ["alloc"]}
21+
url = "2.5.2"

0 commit comments

Comments
 (0)