generated from PlexSheep/rs-base
Merge branch 'devel' of https://git.cscherr.de/PlexSheep/autocrate into devel
cargo devel CI / cargo CI (push) Failing after 1m38s
Details
cargo devel CI / cargo CI (push) Failing after 1m38s
Details
This commit is contained in:
commit
b2bd3a9dde
|
@ -21,6 +21,7 @@ keywords = [
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.79"
|
anyhow = "1.0.79"
|
||||||
|
async-trait = "0.1.77"
|
||||||
cargo = "0.76.0"
|
cargo = "0.76.0"
|
||||||
clap = { version = "4.4.18", features = ["derive", "help"] }
|
clap = { version = "4.4.18", features = ["derive", "help"] }
|
||||||
clap-verbosity-flag = "2.1.2"
|
clap-verbosity-flag = "2.1.2"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
pub mod changelog;
|
pub mod changelog;
|
||||||
pub mod publish;
|
|
||||||
pub mod serverapi;
|
|
||||||
pub mod release;
|
|
||||||
pub mod config;
|
pub mod config;
|
||||||
pub mod error;
|
pub mod error;
|
||||||
|
pub mod publish;
|
||||||
|
pub mod release;
|
||||||
|
pub mod serverapi;
|
||||||
|
|
|
@ -8,6 +8,8 @@ use autocrate::{
|
||||||
serverapi::init_servers,
|
serverapi::init_servers,
|
||||||
publish::publish,
|
publish::publish,
|
||||||
error::*,
|
error::*,
|
||||||
|
publish::publish,
|
||||||
|
release::release,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
|
|
Loading…
Reference in New Issue