Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,23 @@ license = "MIT"
[lints]
workspace = true

[package.metadata.deb]
maintainer = "Aljoscha Krettek <aljoscha.krettek@gmail.com>"
copyright = "2026, ember authors"
license-file = ["LICENSE", "0"]
extended-description = """\
Ember is a lightweight CLI for managing microVMs with copy-on-write storage.
On Linux it uses Firecracker (KVM) for VMs and ZFS zvols for storage. \
No daemon, no REST API — just a single binary."""
section = "admin"
priority = "optional"
depends = "$auto, zfsutils-linux, iptables, iproute2, curl, skopeo"
assets = [
["target/release/ember", "usr/bin/", "755"],
["README.md", "usr/share/doc/ember/README", "644"],
["LICENSE", "usr/share/doc/ember/LICENSE", "644"],
]

[dependencies]
ember-core = { workspace = true }
clap = { workspace = true }
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,17 @@ cargo build --release

The binary is at `./target/release/ember`.

### Linux (Debian/Ubuntu .deb)

Build a `.deb` package with [`cargo-deb`](https://github.com/kornelski/cargo-deb):

```bash
cargo install cargo-deb
cargo deb
```

The package lands at `./target/debian/ember_<version>_<arch>.deb`. Install with `sudo apt install ./target/debian/ember_<version>_<arch>.deb`. Firecracker is not packaged in Debian/Ubuntu and must be installed separately.

#### Linux dependencies

| Dependency | Purpose |
Expand Down
Loading