From f8383e59ceb16a37f3dbea7ec103552168376fa0 Mon Sep 17 00:00:00 2001 From: Melody Horn Date: Tue, 15 Dec 2020 22:40:04 -0700 Subject: initial website logic --- index.html | 96 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 index.html (limited to 'index.html') diff --git a/index.html b/index.html new file mode 100644 index 0000000..72dca25 --- /dev/null +++ b/index.html @@ -0,0 +1,96 @@ + + + + + Are We 1.0 Yet? + + + +
+

Are We 1.0 Yet?

+

+ Checking the 360 most downloaded crates of all time on crates.io to see which ones have reached version 1.0 yet. +

+

+ {{ crates | map(attribute='latest_version') | selectattr('is_1_0') | list | length }} / {{ crates | length }} crates are 1.0 by now. +

+ + + + + + + + + {% for crate in crates %} + + + + + {% endfor %} + +
NameLatest Version
{{ crate.name }}{{ crate.latest_version }}{% if crate.latest_version != crate.latest_pre_release_version %} + (& {{ crate.latest_pre_release_version }}){% endif %}
+
+ + + + \ No newline at end of file -- cgit v1.2.3