comparison rust/hg-core/Cargo.toml @ 42327:e8f3740cc067

rust-filepatterns: add a Rust implementation of pattern-related utils This change introduces Rust implementations of two functions related to pattern handling, all located in `match.py`: - `_regex` - `readpatternfile` These utils are useful in the long-term effort to improve `hg status`'s performance using Rust. Experimental work done by Valentin Gatien-Baron shows very promising improvements, but is too different from the current Mercurial core code structure to be used "as-is". This is the first - albeit very small - step towards the code revamp needed down the line. Two dependencies were added: `regex` and `lazy_static`. Both of them will be useful for a majority of the Rust code that will be written, are well known and maintained either by the Rust core team, or by very frequent contributors. Differential Revision: https://phab.mercurial-scm.org/D6271
author Raphaël Gomès <rgomes@octobus.net>
date Wed, 24 Apr 2019 11:34:09 +0200
parents d1786c1d34fa
children d6c1dd936778
comparison
equal deleted inserted replaced
42326:5d4ec64a6fcb 42327:e8f3740cc067
12 rand_pcg = "*" 12 rand_pcg = "*"
13 13
14 [dependencies] 14 [dependencies]
15 memchr = "2.2.0" 15 memchr = "2.2.0"
16 byteorder = "1.3.1" 16 byteorder = "1.3.1"
17 lazy_static = "1.3.0"
18 regex = "^1.1"