From cb7bcfad4ab0041aaf3fde3185e27ee46bb37788 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Tue, 15 Nov 2022 12:01:28 +0800 Subject: Initial commit Basic GNU standard files are added, and we now stop worrying about monadic anamorphisms. The current focus is on testing the correctness of the algorithm, so I need convenient support for manipulating, interpreting, examining, and per chance animating nondeterministic automata. --- Cargo.toml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e672e74 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,36 @@ +[package] +name = "rep" +version = "0.1.0" +edition = "2021" +authors = ["JSDurand "] +description = "Rust, Emacs, and Parsers" +license = "GPL-3.0-or-later" +keywords = ["emacs", "parser"] +# We require a minimal Rust version of 1.65 as we need the feature of +# generic associated types, which are not stablized until version +# 1.65. +rust-version = "1.65" +# testing the new resolver, even though this has no dependencies ;p + +[workspace] +members = ["graph", "receme", "nfa", "repcore"] +resolver = "2" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +receme = { path = "receme" } + +[dev-dependencies] +criterion = "0.4" + +[features] +default = [] +tokenizer = [] + +[profile.bench] +debug = true + +[[bench]] +name = "bench_receme" +harness = false -- cgit v1.2.3-18-g5258