Cargo.toml
22 lines
| 474 B
| application/toml
|
TOMLLexer
Yuya Nishihara
|
r40003 | [package] | ||
name = "chg" | ||||
version = "0.1.0" | ||||
authors = ["Yuya Nishihara <yuya@tcha.org>"] | ||||
description = "Client for Mercurial command server with cHg extension" | ||||
license = "GPL-2.0+" | ||||
Yuya Nishihara
|
r45179 | edition = "2018" | ||
Yuya Nishihara
|
r40003 | |||
[dependencies] | ||||
Yuya Nishihara
|
r45231 | async-trait = "0.1" | ||
bytes = "0.5" | ||||
futures = "0.3" | ||||
Yuya Nishihara
|
r40003 | libc = "0.2" | ||
Yuya Nishihara
|
r40323 | log = { version = "0.4", features = ["std"] } | ||
Yuya Nishihara
|
r45231 | tokio-hglib = "0.3" | ||
[dependencies.tokio] | ||||
version = "0.2" | ||||
features = ["rt-core", "io-util", "time", "process", "macros"] | ||||
Yuya Nishihara
|
r40003 | |||
[build-dependencies] | ||||
cc = "1.0" | ||||