##// END OF EJS Templates
graft: also forbid "--base" with "--stop" and the like...
graft: also forbid "--base" with "--stop" and the like As "--base" is related to starting a draft, is does not belong to dealing with an interrupted one.

File last commit:

r53205:492d167a default
r53234:58827d81 default
Show More
Cargo.toml
21 lines | 449 B | application/toml | TOMLLexer
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001 [package]
name = "hg-cpython"
version = "0.1.0"
authors = ["Georges Racinet <gracinet@anybox.fr>"]
Raphaël Gomès
rust: move all crates in the main workspace to edition 2021...
r50524 edition = "2021"
Georges Racinet
rust-cpython: start cpython crate bindings...
r41001
[lib]
name='rusthg'
crate-type = ["cdylib"]
[dependencies]
rust: bump rust-cpython version to 0.7.2...
r52762 cpython = { version = "0.7.2", features = ["extension-module"] }
Raphaël Gomès
hg-cpython: upgrade dependencies...
r50533 crossbeam-channel = "0.5.6"
Raphaël Gomès
rust-re2: add wrapper for calling Re2 from Rust...
r44786 hg-core = { path = "../hg-core"}
Raphaël Gomès
hg-cpython: upgrade dependencies...
r50533 libc = "0.2.137"
log = "0.4.17"
Raphaël Gomès
rust: update `env_logger` dependency...
r53205 env_logger = "0.11"
Simon Sapin
rust: Make OwningDirstateMap generic and move it into hg-core...
r48766 stable_deref_trait = "1.2.0"
pacien
rust: add vcsgraph crate as dependency...
r49348 vcsgraph = "0.2.0"
Raphaël Gomès
revlog: add the glue to use the Rust `InnerRevlog` from Python...
r53060 logging_timer = "1.1.0"
python3-sys = "0.7.1"