generated from hack-ink/rust-initializer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
32 lines (28 loc) · 860 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
31
32
[package]
authors = ["Xavier Lau <[email protected]>"]
build = "build.rs"
description = "Merge GitHub Actions pull request automatically."
edition = "2021"
homepage = "https://hack.ink/auto-merge"
license = "GPL-3.0"
name = "auto-merge"
readme = "README.md"
repository = "https://github.com/hack-ink/auto-merge"
version = "0.1.2"
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true
[build-dependencies]
# crates.io
vergen-gitcl = { version = "1.0", features = ["cargo"] }
[dependencies]
# crates.io
anyhow = { version = "1.0" }
clap = { version = "4.5", features = ["derive"] }
color-eyre = { version = "0.6" }
reqwew = { version = "0.3" }
serde_json = { version = "1.0" }
tokio = { version = "1.41", features = ["macros", "rt-multi-thread"] }