summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 071575ef1c6801bccf69fbb3891d90e88b9d5d70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "rep"
version = "0.1.2"
edition = "2021"
authors = ["JSDurand <durand@jsdurand.xyz>"]
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" ]

# 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" }

[features]
default = []
tokenizer = []