Even writing a lexer in rust seems weird and too hard. The typical lexer scheme does not seem to exist in any crate used by some qualified amount of people, instead we have `nom`, which is a "parser combinator", meaning we write a lot of functions instead of grammar that a parser/scanner will be generated from. This just confuses me a lot to be honest, I'd just want lex and yacc in rust, coming from a university course with ply and antlr4.
21 lines
484 B
TOML
21 lines
484 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"oopsc",
|
|
]
|
|
default-members = [
|
|
"oopsc",
|
|
]
|
|
[workspace.package]
|
|
name = "oops"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Christoph J. Scherr <softwar@cscherr.de>"]
|
|
license = "MIT"
|
|
description = "Personal multitool"
|
|
readme = "README.md"
|
|
homepage = "https://git.cscherr.de/PlexSheep/oops"
|
|
repository = "https://git.cscherr.de/PlexSheep/oops"
|
|
keywords = ["compiler"]
|
|
categories = ["command-line-utilities", "development-tools"]
|
|
publish = false
|