-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (31 loc) · 1.01 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
28
29
30
31
32
33
34
35
# SPDX-FileCopyrightText: 2021 Serokell <https://serokell.io/>
#
# SPDX-License-Identifier: MPL-2.0
[package]
name = "update-daemon"
version = "0.1.0"
authors = ["Serokell <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
git2 = "0.18"
octocrab = "0.18.1"
gitlab = "0.1506.0"
log = "0.4.20"
pretty_env_logger = "0.4.0"
thiserror = "1.0"
tokio = { version = "1.36.0", features = [ "full" ] }
xdg = "2.5.2"
serde = { version = "1.0", features = [ "derive" ] }
serde_json = "1.0"
clap = { version = "3.2.25", features = [ "derive" ] }
futures = "0.3"
chrono = "0.4"
indexmap = { version = "1.9", features = [ "serde", "serde-1" ] }
merge = "0.1"
gpgme = "0.10.0"
ssh2 = "0.9"
ssh2-config = "0.2"
# Remove once changes appear in upstream and the new crate version is released
[patch.crates-io]
ssh2-config = { git = "https://github.com/serokell/ssh2-config.git", branch = "rvem/populate-ignored-fields-with-ignored-instead-of-unparsed" }