-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
27 lines (26 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
authors = ["Alexander Korolev <[email protected]>"]
description = """
Mercurial repository changelog parser. It allows to get any revision
with creation date, user, parents, branch and files.
"""
edition = "2021"
homepage = "https://github.com/kilork/hg-parser"
keywords = ["hg", "mercurial", "parser"]
license = "GPL-2.0-or-later"
name = "hg-parser"
repository = "https://github.com/kilork/hg-parser"
version = "0.9.0"
rust-version = "1.78"
[dependencies]
bitflags = { version = "2.5", default-features = false }
byteorder = { version = "1.3", default-features = false }
chrono = { version = "0.4", features = ["clock"], default-features = false }
flate2 = "1.0"
lazy_static = { version = "1.4", default-features = false }
lru-cache = { version = "0.1", default-features = false }
nom = { version = "7.1", default-features = false, features = ["alloc"] }
ordered-parallel-iterator = { version = "0.2", default-features = false }
rayon = { version = "1.4", default-features = false }
sha-1 = { version = "0.10", default-features = false }
thiserror = "1"