[package] name = "rep" version = "0.1.3" 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" [workspace] members = [ "graph", "receme", "nfa", "chain", "viz", "grammar", "forest", "semiring", "graph_macro", "tokens" ] # testing the new resolver, even though this has no dependencies ;p resolver = "2" [lib] crate-type = ["cdylib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] chain = { path = "./chain" } grammar = { path = "./grammar" } graph = { path = "./graph" } forest = { path = "./forest" } [features] default = [] tokenizer = []