##// 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 [package]
1 [package]
2 name = "hg-core"
2 name = "hg-core"
3 version = "0.1.0"
3 version = "0.1.0"
4 authors = ["Georges Racinet <gracinet@anybox.fr>"]
4 authors = ["Georges Racinet <gracinet@anybox.fr>"]
5 description = "Mercurial pure Rust core library, with no assumption on Python bindings (FFI)"
5 description = "Mercurial pure Rust core library, with no assumption on Python bindings (FFI)"
6 edition = "2018"
6 edition = "2018"
7
7
8 [lib]
8 [lib]
9 name = "hg"
9 name = "hg"
10
10
11 [dependencies]
11 [dependencies]
12 bitflags = "1.2"
12 bitflags = "1.2"
13 bytes-cast = "0.2"
13 bytes-cast = "0.2"
14 byteorder = "1.3.4"
14 byteorder = "1.3.4"
15 derive_more = "0.99"
15 derive_more = "0.99"
16 home = "0.5"
16 home = "0.5"
17 im-rc = "15.0.*"
17 im-rc = "15.0"
18 itertools = "0.9"
18 itertools = "0.9"
19 lazy_static = "1.4.0"
19 lazy_static = "1.4.0"
20 libc = "0.2"
20 libc = "0.2"
21 ouroboros = "0.15.0"
21 ouroboros = "0.15.0"
22 rand = "0.8.4"
22 rand = "0.8.4"
23 rand_pcg = "0.3.1"
23 rand_pcg = "0.3.1"
24 rand_distr = "0.4.2"
24 rand_distr = "0.4.2"
25 rayon = "1.3.0"
25 rayon = "1.3.0"
26 regex = "1.3.9"
26 regex = "1.3.9"
27 sha-1 = "0.9.6"
27 sha-1 = "0.9.6"
28 twox-hash = "1.5.0"
28 twox-hash = "1.5.0"
29 same-file = "1.0.6"
29 same-file = "1.0.6"
30 tempfile = "3.1.0"
30 tempfile = "3.1.0"
31 crossbeam-channel = "0.4"
31 crossbeam-channel = "0.4"
32 micro-timer = "0.3.0"
32 micro-timer = "0.3.0"
33 log = "0.4.8"
33 log = "0.4.8"
34 memmap2 = {version = "0.4", features = ["stable_deref_trait"]}
34 memmap2 = {version = "0.4", features = ["stable_deref_trait"]}
35 zstd = "0.5.3"
35 zstd = "0.5.3"
36 format-bytes = "0.3.0"
36 format-bytes = "0.3.0"
37
37
38 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until
38 # We don't use the `miniz-oxide` backend to not change rhg benchmarks and until
39 # we have a clearer view of which backend is the fastest.
39 # we have a clearer view of which backend is the fastest.
40 [dependencies.flate2]
40 [dependencies.flate2]
41 version = "1.0.16"
41 version = "1.0.16"
42 features = ["zlib"]
42 features = ["zlib"]
43 default-features = false
43 default-features = false
44
44
45 [dev-dependencies]
45 [dev-dependencies]
46 clap = "*"
46 clap = "*"
47 pretty_assertions = "0.6.1"
47 pretty_assertions = "0.6.1"
General Comments 0
You need to be logged in to leave comments. Login now