1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 09:17:41 +00:00

refactor: .vl -> .blsp

This commit is contained in:
Natapat Samutpong 2022-01-24 05:32:45 +07:00
parent 8d88fc41ad
commit 2f81911813
6 changed files with 9 additions and 9 deletions

1
.gitignore vendored
View file

@ -1 +1,2 @@
/target /target
/proto

14
Cargo.lock generated
View file

@ -11,6 +11,13 @@ dependencies = [
"memchr", "memchr",
] ]
[[package]]
name = "blspc"
version = "0.1.0"
dependencies = [
"regex",
]
[[package]] [[package]]
name = "memchr" name = "memchr"
version = "2.4.1" version = "2.4.1"
@ -33,10 +40,3 @@ name = "regex-syntax"
version = "0.6.25" version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "vl"
version = "0.1.0"
dependencies = [
"regex",
]

View file

@ -1,5 +1,5 @@
[package] [package]
name = "vl" name = "blspc"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"

View file

@ -1,6 +1,5 @@
use std::{fs::read_to_string, env::args, path::Path}; use std::{fs::read_to_string, env::args, path::Path};
mod util; mod util;
use util::cover_paren; use util::cover_paren;