Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
dist1ll committed Jun 28, 2023
0 parents commit 94499e0
Show file tree
Hide file tree
Showing 20 changed files with 10,005 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
@@ -0,0 +1,2 @@
[build]
rustflags = ["-Zpolonius"]
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
wishlist.ln
/target/
95 changes: 95 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

33 changes: 33 additions & 0 deletions Cargo.toml
@@ -0,0 +1,33 @@
[package]
name = "lnpl"
version = "0.1.0"
edition = "2021"

[lib]
name = "lnpl"
doctest = false
bench = false

[[bin]]
name = "main"
test = false
bench = false

# FIXME: Delete this binary crate
[[bin]]
name = "stats"
test = false
bench = false

[[bin]]
name = "perfhash"
test = false
bench = false

[[bench]]
name = "lexer"
test = false

[dependencies]
logos = "0.13.0"

0 comments on commit 94499e0

Please sign in to comment.