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.

View file

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

View file

@ -1,7 +1,7 @@
//! Internal HTML utilities
#![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;

View file

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

View file

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