Merge branch 'devel' of https://git.cscherr.de/PlexSheep/autocrate into devel
cargo devel CI / cargo CI (push) Failing after 1m38s Details

This commit is contained in:
Christoph J. Scherr 2024-02-16 20:01:14 +01:00
commit b2bd3a9dde
Signed by: PlexSheep
GPG Key ID: 7CDD0B14851A08EF
3 changed files with 6 additions and 3 deletions

View File

@ -21,6 +21,7 @@ keywords = [
[dependencies]
anyhow = "1.0.79"
async-trait = "0.1.77"
cargo = "0.76.0"
clap = { version = "4.4.18", features = ["derive", "help"] }
clap-verbosity-flag = "2.1.2"

View File

@ -1,6 +1,6 @@
pub mod changelog;
pub mod publish;
pub mod serverapi;
pub mod release;
pub mod config;
pub mod error;
pub mod publish;
pub mod release;
pub mod serverapi;

View File

@ -8,6 +8,8 @@ use autocrate::{
serverapi::init_servers,
publish::publish,
error::*,
publish::publish,
release::release,
};
#[tokio::main]