-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
30 lines (26 loc) · 812 Bytes
/
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
28
29
30
[package]
name = "gitrevset"
version = "0.2.0"
authors = ["Jun Wu <[email protected]>"]
edition = "2018"
license = "GPL-2.0-only"
description = "A domain-specific-language to select commits in a git repo. Similar to Mercurial's revset."
repository = "https://github.com/quark-zju/gitrevset"
[dependencies]
drawdag = { package = "esl01-drawdag", version = "0.1", optional = true }
gitdag = "0.1.2"
globset = "0.4"
hgtime = { package = "esl01-hgtime", version = "0.1" }
lalrpop-util = { version = "0.19", features = ["lexer"] }
once_cell = "1.4"
tempfile = { version = "3", optional = true }
thiserror = "1"
[dev-dependencies]
drawdag = { package = "esl01-drawdag", version = "0.1" }
tempfile = "3"
[features]
default = []
testutil = ["drawdag", "tempfile"]
[[bin]]
name = "git-revs"
path = "src/bin/git-revs.rs"