mirror of
https://github.com/openharmony/third_party_rust_regex.git
synced 2026-07-01 21:33:59 -04:00
d610ff85f1
This commit does a number of manual fixups to the code after the previous two commits were done via 'cargo fix' automatically. Actually, this contains more 'cargo fix' annotations, since I had forgotten to add 'edition = "2018"' to all sub-crates.
19 lines
551 B
TOML
19 lines
551 B
TOML
[package]
|
|
publish = false
|
|
name = "regex-debug"
|
|
version = "0.1.0"
|
|
authors = ["The Rust Project Developers"]
|
|
license = "MIT/Apache-2.0"
|
|
repository = "https://github.com/rust-lang/regex"
|
|
documentation = "https://docs.rs/regex"
|
|
homepage = "https://github.com/rust-lang/regex"
|
|
description = "A tool useful for debugging regular expressions."
|
|
workspace = ".."
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
docopt = "1"
|
|
regex = { version = "1.1", path = ".." }
|
|
regex-syntax = { version = "0.6", path = "../regex-syntax" }
|
|
serde = { version = "1", features = ["derive"] }
|