Cargo.toml
52 lines
| 1.2 KiB
| application/toml
|
TOMLLexer
Georges Racinet
|
r40307 | [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)" | ||||
Raphaël Gomès
|
r42828 | edition = "2018" | ||
Georges Racinet
|
r40307 | |||
[lib] | ||||
name = "hg" | ||||
Georges Racinet
|
r41841 | |||
Raphaël Gomès
|
r42488 | [dependencies] | ||
Raphaël Gomès
|
r49808 | bitflags = "1.3.2" | ||
bytes-cast = "0.2.0" | ||||
byteorder = "1.4.3" | ||||
derive_more = "0.99.17" | ||||
hashbrown = { version = "0.9.1", features = ["rayon"] } | ||||
home = "0.5.3" | ||||
Mads Kiilerich
|
r50140 | im-rc = "15.0" | ||
Raphaël Gomès
|
r49808 | itertools = "0.10.3" | ||
Raphaël Gomès
|
r45090 | lazy_static = "1.4.0" | ||
Simon Sapin
|
r49009 | libc = "0.2" | ||
Raphaël Gomès
|
r49864 | ouroboros = "0.15.0" | ||
Martin von Zweigbergk
|
r49403 | rand = "0.8.4" | ||
rand_pcg = "0.3.1" | ||||
Raphaël Gomès
|
r49808 | rand_distr = "0.4.3" | ||
Raphaël Gomès
|
r50995 | rayon = "1.6.1" | ||
Raphaël Gomès
|
r49808 | regex = "1.5.5" | ||
sha-1 = "0.10.0" | ||||
twox-hash = "1.6.2" | ||||
Raphaël Gomès
|
r44783 | same-file = "1.0.6" | ||
Simon Sapin
|
r48138 | tempfile = "3.1.0" | ||
Raphaël Gomès
|
r50476 | thread_local = "1.1.4" | ||
Mads Kiilerich
|
r50312 | crossbeam-channel = "0.5.0" | ||
micro-timer = "0.4.0" | ||||
Raphaël Gomès
|
r45027 | log = "0.4.8" | ||
Mads Kiilerich
|
r50312 | memmap2 = { version = "0.5.3", features = ["stable_deref_trait"] } | ||
Antoine Cezar
|
r46097 | zstd = "0.5.3" | ||
Simon Sapin
|
r49323 | format-bytes = "0.3.0" | ||
Raphaël Gomès
|
r50476 | # once_cell 1.15 uses edition 2021, while the heptapod CI | ||
Arseniy Alekseyev
|
r50415 | # uses an old version of Cargo that doesn't support it. | ||
Raphaël Gomès
|
r50490 | once_cell = "1.14.0" | ||
Antoine Cezar
|
r46097 | |||
Raphaël Gomès
|
r46189 | # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until | ||
# we have a clearer view of which backend is the fastest. | ||||
Antoine Cezar
|
r46097 | [dependencies.flate2] | ||
Raphaël Gomès
|
r49808 | version = "1.0.22" | ||
Antoine Cezar
|
r46097 | features = ["zlib"] | ||
default-features = false | ||||
Raphaël Gomès
|
r44737 | |||
[dev-dependencies] | ||||
Raphaël Gomès
|
r49808 | clap = "2.34.0" | ||
pretty_assertions = "1.1.0" | ||||