Show More
@@ -1,52 +1,50 b'' | |||
|
1 | 1 | [package] |
|
2 | 2 | name = "hg-core" |
|
3 | 3 | version = "0.1.0" |
|
4 | 4 | authors = ["Georges Racinet <gracinet@anybox.fr>"] |
|
5 | 5 | description = "Mercurial pure Rust core library, with no assumption on Python bindings (FFI)" |
|
6 | 6 | edition = "2021" |
|
7 | 7 | |
|
8 | 8 | [lib] |
|
9 | 9 | name = "hg" |
|
10 | 10 | |
|
11 | 11 | [dependencies] |
|
12 | 12 | bitflags = "1.3.2" |
|
13 | 13 | bytes-cast = "0.3.0" |
|
14 | 14 | byteorder = "1.4.3" |
|
15 | 15 | derive_more = "0.99.17" |
|
16 | 16 | hashbrown = { version = "0.13.1", features = ["rayon"] } |
|
17 | 17 | home = "0.5.4" |
|
18 | 18 | im-rc = "15.1.0" |
|
19 | 19 | itertools = "0.10.5" |
|
20 | 20 | lazy_static = "1.4.0" |
|
21 | 21 | libc = "0.2.137" |
|
22 | 22 | logging_timer = "1.1.0" |
|
23 | 23 | ouroboros = "0.15.5" |
|
24 | 24 | rand = "0.8.5" |
|
25 | 25 | rand_pcg = "0.3.1" |
|
26 | 26 | rand_distr = "0.4.3" |
|
27 | 27 | rayon = "1.7.0" |
|
28 | 28 | regex = "1.7.0" |
|
29 | 29 | sha-1 = "0.10.0" |
|
30 | 30 | twox-hash = "1.6.3" |
|
31 | 31 | same-file = "1.0.6" |
|
32 | 32 | tempfile = "3.3.0" |
|
33 | 33 | thread_local = "1.1.4" |
|
34 | 34 | crossbeam-channel = "0.5.6" |
|
35 | 35 | log = "0.4.17" |
|
36 | 36 | memmap2 = { version = "0.5.8", features = ["stable_deref_trait"] } |
|
37 | 37 | zstd = "0.12" |
|
38 | 38 | format-bytes = "0.3.0" |
|
39 | # once_cell 1.15 uses edition 2021, while the heptapod CI | |
|
40 | # uses an old version of Cargo that doesn't support it. | |
|
41 | 39 | once_cell = "1.16.0" |
|
42 | 40 | |
|
43 | 41 | # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until |
|
44 | 42 | # we have a clearer view of which backend is the fastest. |
|
45 | 43 | [dependencies.flate2] |
|
46 | 44 | version = "1.0.24" |
|
47 | 45 | features = ["zlib"] |
|
48 | 46 | default-features = false |
|
49 | 47 | |
|
50 | 48 | [dev-dependencies] |
|
51 | 49 | clap = { version = "4.0.24", features = ["derive"] } |
|
52 | 50 | pretty_assertions = "1.1.0" |
General Comments 0
You need to be logged in to leave comments.
Login now