added system dependencies to Cargo.toml
This commit is contained in:
parent
1b7659b046
commit
82c4aa3312
2 changed files with 16 additions and 2 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
|
@ -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",
|
||||
|
|
|
|||
16
Cargo.toml
16
Cargo.toml
|
|
@ -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 = "*"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue