automatic cargo CI changes

This commit is contained in:
PlexSheep 2024-02-16 18:01:54 +00:00 committed by github-actions[bot]
parent 2568d96ac3
commit 48008c4d7a
5 changed files with 8 additions and 7 deletions

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

@ -4,9 +4,9 @@ use autocrate::{
cli::{Cli, Commands},
Config,
},
release::release,
publish::publish,
error::*,
publish::publish,
release::release,
};
#[tokio::main]

View File

@ -1,4 +1,4 @@
use crate::{config::Config, error::*};
pub fn publish(cfg: &Config) -> Result<()> {
pub fn publish(_cfg: &Config) -> Result<()> {
todo!()
}

View File

@ -1,5 +1,5 @@
use crate::{config::Config, error::*};
pub fn release(cfg: &Config) -> Result<()> {
pub fn release(_cfg: &Config) -> Result<()> {
todo!()
}

View File

@ -0,0 +1 @@