diff --git a/src/config.rs b/src/config.rs index a330145..c81fafb 100644 --- a/src/config.rs +++ b/src/config.rs @@ -32,10 +32,6 @@ pub struct Config { #[arg(long)] pub link: Option, - /// Optional reference to the [Aquatic](https://github.com/greatest-ape/aquatic) stats page - #[arg(long)] - pub stats: Option, - /// Display following tracker(s) in the header, append also to the magnet links #[arg(long)] pub tracker: Option>, diff --git a/src/main.rs b/src/main.rs index 308ed4f..87d47ce 100644 --- a/src/main.rs +++ b/src/main.rs @@ -24,7 +24,6 @@ pub struct Meta { pub canonical: Option, pub description: Option, pub format_time: String, - pub stats: Option, pub title: String, /// * use vector to keep the order from the arguments list pub trackers: Option>, @@ -123,7 +122,6 @@ fn rocket() -> _ { canonical: config.link, description: config.description, format_time: config.format_time, - stats: config.stats, title: config.title, trackers: config.tracker, }) diff --git a/templates/layout/default.html.tera b/templates/layout/default.html.tera index d830159..8dd500a 100644 --- a/templates/layout/default.html.tera +++ b/templates/layout/default.html.tera @@ -168,7 +168,6 @@ {% block content %}{% endblock content %}