blob: 82e976d972cc8f7f93a217e91d012f9de794242b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//! ref: composer/src/Composer/Package/Archiver/ArchiverInterface.php
pub trait ArchiverInterface {
fn archive(
&self,
sources: String,
target: String,
format: String,
excludes: Vec<String>,
ignore_filters: bool,
) -> anyhow::Result<String>;
fn supports(&self, format: String, source_type: Option<String>) -> bool;
}
|