##// END OF EJS Templates
rust: relax im-rc dependency to allow minor updates...
Mads Kiilerich -
r50140:13c37f1c stable
parent child Browse files
Show More
@@ -1,47 +1,47 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 = "2018"
7 7
8 8 [lib]
9 9 name = "hg"
10 10
11 11 [dependencies]
12 12 bitflags = "1.2"
13 13 bytes-cast = "0.2"
14 14 byteorder = "1.3.4"
15 15 derive_more = "0.99"
16 16 home = "0.5"
17 im-rc = "15.0.*"
17 im-rc = "15.0"
18 18 itertools = "0.9"
19 19 lazy_static = "1.4.0"
20 20 libc = "0.2"
21 21 ouroboros = "0.15.0"
22 22 rand = "0.8.4"
23 23 rand_pcg = "0.3.1"
24 24 rand_distr = "0.4.2"
25 25 rayon = "1.3.0"
26 26 regex = "1.3.9"
27 27 sha-1 = "0.9.6"
28 28 twox-hash = "1.5.0"
29 29 same-file = "1.0.6"
30 30 tempfile = "3.1.0"
31 31 crossbeam-channel = "0.4"
32 32 micro-timer = "0.3.0"
33 33 log = "0.4.8"
34 34 memmap2 = {version = "0.4", features = ["stable_deref_trait"]}
35 35 zstd = "0.5.3"
36 36 format-bytes = "0.3.0"
37 37
38 38 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until
39 39 # we have a clearer view of which backend is the fastest.
40 40 [dependencies.flate2]
41 41 version = "1.0.16"
42 42 features = ["zlib"]
43 43 default-features = false
44 44
45 45 [dev-dependencies]
46 46 clap = "*"
47 47 pretty_assertions = "0.6.1"
General Comments 0
You need to be logged in to leave comments. Login now