From 210234f117d422a4ef7690e20aa19760c0d39724 Mon Sep 17 00:00:00 2001 From: kud1ing Date: Thu, 18 Dec 2014 19:46:25 +0100 Subject: [PATCH] rename --- README.md | 7 +++++-- UNSTABLE.md | 7 +++++-- generate_markdown_files.py | 7 +++++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f1af86e..00401a5 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ A curated list of awesome Rust code and resources. Inspired by the other [awesom Only projects that are stable and useful to users are added. Projects that do not compile with Rust-nightly for a longer time are moved to [UNSTABLE.md](UNSTABLE.md). - [Awesome Rust](#awesome-rust) - - [Code](#code) + - [Applications](#applications) + - [Frameworks](#frameworks) - [Audio](#audio) - [Build system](#build-system) - [Command-line argument parsing](#command-line-argument-parsing) @@ -27,7 +28,9 @@ Only projects that are stable and useful to users are added. Projects that do no - [Web programming](#web-programming) - [Resources](#resources) -## Code +## Applications + +## Frameworks ### Audio diff --git a/UNSTABLE.md b/UNSTABLE.md index d6eb387..27dbb8b 100644 --- a/UNSTABLE.md +++ b/UNSTABLE.md @@ -3,7 +3,8 @@ A list of awesome but unstable/experimental Rust projects which some day hopefully will be migrated to `README.md`. - [Awesome Rust](#awesome-rust) - - [Code](#code) + - [Applications](#applications) + - [Frameworks](#frameworks) - [Audio](#audio) - [Build system](#build-system) - [Command-line argument parsing](#command-line-argument-parsing) @@ -25,7 +26,9 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful - [Web programming](#web-programming) - [Resources](#resources) -## Code +## Applications + +## Frameworks ### Audio diff --git a/generate_markdown_files.py b/generate_markdown_files.py index b7869e0..cab83d4 100644 --- a/generate_markdown_files.py +++ b/generate_markdown_files.py @@ -580,7 +580,8 @@ A list of awesome but unstable/experimental Rust projects which some day hopeful TOC = \ """ - [Awesome Rust](#awesome-rust) - - [Code](#code) + - [Applications](#applications) + - [Frameworks](#frameworks) - [Audio](#audio) - [Build system](#build-system) - [Command-line argument parsing](#command-line-argument-parsing) @@ -655,7 +656,9 @@ def entry( prefix, name, rows_stable=None, rows_unstable=None ): rows_stable = [HEADER_STABLE, TOC] rows_unstable = [HEADER_UNSTABLE, TOC] -add( '## Code\n', rows_stable, rows_unstable ) +add( '## Applications\n', rows_stable, rows_unstable ) + +add( '## Frameworks\n', rows_stable, rows_unstable ) add( '\n### Audio\n', rows_stable, rows_unstable ) entry( '* ', 'bjz/openal-rs', rows_stable, rows_unstable )