rust/hg-core/Cargo.toml
author Raphaël Gomès <rgomes@octobus.net>
Wed, 24 Apr 2019 11:34:09 +0200
changeset 42327 e8f3740cc067
parent 42302 d1786c1d34fa
child 42331 d6c1dd936778
permissions -rw-r--r--
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

[package]
name = "hg-core"
version = "0.1.0"
authors = ["Georges Racinet <gracinet@anybox.fr>"]
description = "Mercurial pure Rust core library, with no assumption on Python bindings (FFI)"

[lib]
name = "hg"

[dev-dependencies]
rand = "*"
rand_pcg = "*"

[dependencies]
memchr = "2.2.0"
byteorder = "1.3.1"
lazy_static = "1.3.0"
regex = "^1.1"