added system dependencies to Cargo.toml

This commit is contained in:
Patryk Hegenberg 2024-05-02 22:03:46 +02:00
parent 1b7659b046
commit 82c4aa3312
2 changed files with 16 additions and 2 deletions

2
Cargo.lock generated
View file

@ -406,7 +406,7 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
[[package]]
name = "caesar-transfer-iu"
version = "0.2.0"
version = "0.3.1"
dependencies = [
"aes-gcm",
"axum 0.7.5",

View file

@ -71,6 +71,20 @@ ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
]
# Publish jobs to run in CI
pr-run-mode = "plan"
[workspace.metadata.dist.dependecies.homebrew]
protobuf = "*"
[workspace.metadata.dist.dependecies.apt]
protobuf-compile = "*"
[workspace.metadata.dist.dependecies.chocolatey]
protoc = "*"