# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "clearurls" version = "0.0.4" authors = ["jendrikw"] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Clear URLS from tracking parameters with crowd-sourced rules from https://clearurls.xyz" readme = "README.md" keywords = [ "clean", "clear", "url", ] categories = [ "network-programming", "web-programming", ] license = "LGPL-3.0-only" repository = "https://github.com/jendrikw/clearurls" [lib] name = "clearurls" path = "src/lib.rs" [[test]] name = "test_linkify" path = "tests/test_linkify.rs" [[test]] name = "test_markdown" path = "tests/test_markdown.rs" [[test]] name = "test_single_url" path = "tests/test_single_url.rs" [dependencies.linkify] version = "0.10.0" optional = true [dependencies.markdown-it] version = "0.6.1" features = ["linkify"] optional = true default-features = false [dependencies.percent-encoding] version = "2.3.1" features = ["alloc"] default-features = false [dependencies.regex] version = "1.10.5" features = ["unicode"] default-features = false [dependencies.serde] version = "1.0.204" features = [ "derive", "alloc", ] default-features = false [dependencies.serde_json] version = "1.0.122" features = ["alloc"] default-features = false [dependencies.url] version = "2.5.2" [dev-dependencies.tempfile] version = "3.11.0" [features] default = ["std"] linkify = ["dep:linkify"] markdown-it = [ "dep:markdown-it", "dep:linkify", "std", ] std = [ "serde/std", "serde_json/std", "regex/std", ]