diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -18,9 +18,15 @@ members = [ "graph", "receme", "nfa", "chain", "viz", "grammar", # 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 = [] |