chore: change name

This commit is contained in:
trisua 2025-07-17 00:36:19 -04:00
parent d71dc7e7ca
commit eb464f84c4
5 changed files with 1315 additions and 20 deletions

2
Cargo.lock generated
View file

@ -3,5 +3,5 @@
version = 4 version = 4
[[package]] [[package]]
name = "bberry" name = "nanoneo"
version = "0.2.0" version = "0.2.0"

View file

@ -1,8 +1,8 @@
[package] [package]
name = "bberry" name = "nanoneo"
description = "lisp-like dsl which \"compiles\" into html" description = "lisp-like dsl which \"compiles\" into html"
version = "0.2.0" version = "0.2.0"
edition = "2024" edition = "2024"
authors = ["trisuaso"] authors = ["trisuaso"]
repository = "https://trisua.com/t/bberry.git" repository = "https://trisua.com/t/nanoneo.git"
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"

View file

@ -1,4 +1,4 @@
# 🫐 bberry # 🐈‍⬛ nanoneo
Super simple parser and "compiler" for turning a lisp-like DSL into HTML. Super simple parser and "compiler" for turning a lisp-like DSL into HTML.
@ -43,7 +43,7 @@ This yields:
# Syntax # Syntax
bberry has some super simple syntax helpers: nanoneo has some super simple syntax helpers:
- You can create raw HTML elements using `(text "...")` or `(tag' "...")` - You can create raw HTML elements using `(text "...")` or `(tag' "...")`
- You can add attributes using `(attr "key" "value")` or `("key" "value")` - You can add attributes using `(attr "key" "value")` or `("key" "value")`
@ -53,4 +53,4 @@ bberry has some super simple syntax helpers:
# License # License
bberry is licensed under the [AGPL-3.0](./LICENSE). nanoneo is licensed under the [AGPL-3.0](./LICENSE).

File diff suppressed because it is too large Load diff

View file

@ -92,7 +92,7 @@ mod test {
.unwrap(); .unwrap();
let duration = start.elapsed().unwrap(); let duration = start.elapsed().unwrap();
println!("took: {}μs", duration.as_micros()); println!("took: {}μs", duration.as_millis());
assert!(duration < Duration::from_micros(500)) assert!(duration < Duration::from_millis(100))
} }
} }