1[package] 2publish = false 3name = "regex-debug" 4version = "0.1.0" 5authors = ["The Rust Project Developers"] 6license = "MIT OR Apache-2.0" 7repository = "https://github.com/rust-lang/regex" 8documentation = "https://docs.rs/regex" 9homepage = "https://github.com/rust-lang/regex" 10description = "A tool useful for debugging regular expressions." 11workspace = ".." 12edition = "2018" 13 14[dependencies] 15docopt = "1" 16regex = { version = "1.1", path = ".." } 17regex-syntax = { version = "0.6", path = "../regex-syntax" } 18serde = { version = "1", features = ["derive"] } 19