Rename htmlthing to maud

rocks
This commit is contained in:
Chris Wong 2014-12-18 19:49:49 +13:00
parent 6a4709315b
commit 9e8e2f652e
8 changed files with 12 additions and 12 deletions

View file

@ -1,5 +1,5 @@
htmlthing maud
========= ====
Compile-time HTML templates. Compile-time HTML templates.

View file

@ -1,11 +1,11 @@
[package] [package]
name = "htmlthing" name = "maud"
version = "0.0.1" version = "0.0.1"
authors = ["Chris Wong <lambda.fairy@gmail.com>"] authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
repository = "https://github.com/lfairy/htmlthing" repository = "https://github.com/lfairy/maud"
description = """ description = """
Compile-time HTML templates. Compile-time HTML templates.
""" """

View file

@ -1,7 +1,7 @@
//! Internal HTML utilities //! Internal HTML utilities
#![experimental = "These functions should not be called directly. #![experimental = "These functions should not be called directly.
Use the macros in `htmlthing_macros` instead."] Use the macros in `maud_macros` instead."]
use std::io::IoResult; use std::io::IoResult;

View file

@ -1,18 +1,18 @@
[package] [package]
name = "htmlthing_macros" name = "maud_macros"
version = "0.0.1" version = "0.0.1"
authors = ["Chris Wong <lambda.fairy@gmail.com>"] authors = ["Chris Wong <lambda.fairy@gmail.com>"]
license = "MIT/Apache-2.0" license = "MIT/Apache-2.0"
repository = "https://github.com/lfairy/htmlthing" repository = "https://github.com/lfairy/maud"
description = """ description = """
Compile-time HTML templates. Compile-time HTML templates.
""" """
[dependencies.htmlthing] [dependencies.maud]
path = "../htmlthing" path = "../maud"
[lib] [lib]
name = "htmlthing_macros" name = "maud_macros"
plugin = true plugin = true

View file

@ -1,7 +1,7 @@
#![feature(phase)] #![feature(phase)]
extern crate htmlthing; extern crate maud;
#[phase(plugin)] extern crate htmlthing_macros; #[phase(plugin)] extern crate maud_macros;
#[test] #[test]
fn it_works() { fn it_works() {