Rename htmlthing to maud
rocks
This commit is contained in:
parent
6a4709315b
commit
9e8e2f652e
8 changed files with 12 additions and 12 deletions
|
@ -1,5 +1,5 @@
|
||||||
htmlthing
|
maud
|
||||||
=========
|
====
|
||||||
|
|
||||||
Compile-time HTML templates.
|
Compile-time HTML templates.
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
"""
|
"""
|
|
@ -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;
|
||||||
|
|
|
@ -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
|
|
@ -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() {
|
Loading…
Add table
Reference in a new issue