Skip to content

Commit 8a18760

Browse files
committed
Rename to plushie
1 parent 8e92c3c commit 8a18760

File tree

9 files changed

+34
-34
lines changed

9 files changed

+34
-34
lines changed

β€Ž.gitignoreβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
/target
2-
/*.pb
2+
/*.plushie

β€ŽCargo.lockβ€Ž

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€ŽCargo.tomlβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
2-
name = "penny"
2+
name = "plushie"
33
version = "0.0.1"
44
edition = "2021"
55
license = "Apache-2.0"
66
authors = ["Federico Maria Morrone <[email protected]>"]
77
readme = "README.md"
8-
repository = "https://github.com/penny-lang/penny"
8+
repository = "https://github.com/plushie-lang/plushie"
99
publish = false
1010

1111
[profile.release]

β€ŽREADME.mdβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Penny
1+
# Plushie
22

33
The most adorable language you never heard off
44

@@ -8,7 +8,7 @@ You can find some example of the language in the corresponding folder. To run
88
them make sure you have deno installed then run:
99

1010
```bash
11-
penny run examples/hello.pb
11+
plushie run examples/hello.plushie
1212
```
1313

1414
## License

β€Žbuild.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
fn main() {
22
lalrpop::process_root().expect("Failed to build grammar");
33

4-
println!("cargo::rerun-if-changed=src/penny.lalrpop");
4+
println!("cargo::rerun-if-changed=src/plushie.lalrpop");
55
}
File renamed without changes.

β€Žsrc/main.rsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::{fs, path::PathBuf, process::Command};
33
use anyhow::Result;
44
use clap::{Parser, Subcommand};
55

6-
use penny::compile_to_js;
6+
use plushie::compile_to_js;
77

88
#[derive(Parser)]
99
#[command(version, about)]

β€Žsrc/parser.rsβ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
lalrpop_util::lalrpop_mod!(penny);
1+
lalrpop_util::lalrpop_mod!(plushie);
22

3-
pub use penny::*;
3+
pub use plushie::*;
File renamed without changes.

0 commit comments

Comments
Β (0)