[package] name = "cfg-classify" version = "0.0.1" edition = "2021" authors = [ "Piotr Czarnecki " ] description = "Library for manipulating context-free grammars." keywords = ["grammar", "parsing", "language"] documentation = "https://docs.rs/cfg/latest/cfg-classify/" homepage = "https://github.com/pczarn/cfg" repository = "https://github.com/pczarn/cfg" license = "Apache-2.0 OR MIT" [dependencies] cfg-grammar = { version = "0.0.1", path = "../cfg-grammar/" } cfg-symbol = { version = "0.0.1", path = "../cfg-symbol/" } cfg-predict = { version = "0.0.1", path = "../cfg-predict/", optional = true } bit-matrix = "0.8" bit-vec = "0.7"