├── .gitignore └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Generated when running `gitbook build` 2 | _book/ 3 | 4 | *~ 5 | *.bak 6 | *.swp 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # THIS REPOSITORY HAS DISCONTINUED 2 | 3 | Please see the new [fmt-rfcs](https://github.com/rust-lang-nursery/fmt-rfcs) repository. 4 | --------------------------------------------------------------------------------