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.
|
||||
|
||||
|
|
|
@ -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.
|
||||
"""
|
|
@ -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;
|
||||
|
|
@ -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
|
|
@ -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() {
|
Loading…
Add table
Reference in a new issue