[package] name = "csmlinterpreter" version = "0.4.0" authors = [ "Alexis Merelo ", "Jefferson Le Quellec ", "François Falala-Sechet ", "Bastien Botella " ] license = "Apache-2.0" readme = "README.md" repository = "https://github.com/CSML-by-Clevy/csml-interpreter" homepage = "https://www.csml.dev/" documentation = "https://docs.rs/nom" description = """ The CSML (Conversational Standard Meta Language) is a Domain-Specific Language developed for creating conversational experiences easily. """ keywords = ["chatbot", "interpreter", "language", "csml"] categories = ["text-processing"] edition = "2018" [lib] name = "csmlinterpreter" crate-type = ["rlib"] [dependencies] nom_locate = "2.0.0" nom = "5.1.1" rand = "0.7.3" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" libc = "0.2.68" lazy_static = "1.4.0" regex = "1.3.6" ureq = { version = "0.12.1", features = ["json"] } [[example]] name = "hello_world" [[example]] name = "metadata" [[example]] name = "event" [[example]] name = "memory" [[example]] name = "factorial"