A Cargo subcommand which packages binary crates in a format compatible with the SLS specification for easy distribution and execution. The package layout is designed to split immutable files from mutable state and configuration.
The crate is packaged with a simple daemonizing script, a manifest describing the content of the package, and other user-defined content:
[service-name]-[service-version]/
deployment/
manifest.yml # simple package manifest
service/
bin/
[service-name] # crate executable
init.sh # daemonizing script
var/ # application configuration and data
Packages are produced as a gzipped tarball named [service-name]-[service-version].sls.tgz
.
Install via Cargo and run as a subcommand:
$ cargo install --git https://github.com/sfackler/cargo-sls-distribution cargo-sls-distribution
...
$ cargo sls-distribution
The path of the created package will be printed to standard out.
Configuration is specified in the package.metadata.sls-distribution
section of your Cargo.toml.
```toml [package.metadata.sls-distribution]
group = "com.foobar"
args = ["var/conf/server.yml"]
git describe
rather than the Cargo package version.git_version = true
manifest_extensions = { key = "value" } ```
The contents of the deployment
, service
, and var
directories will be added to the archive if present, though this
can be controlled as you would for cargo package
, via the standard package.include
and package.exclude
fields as
well as .gitignore
files:
toml
[package]
exclude = ["var/data/*"]