-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.39 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "beamctl"
version = "0.4.0"
edition = "2021"
repository = "https://github.com/samply/beamctl"
documentation = "https://github.com/samply/beamctl"
license = "Apache-2.0"
[dependencies]
anyhow = "1"
clap = { version = "4.3", features = ["derive", "env"] }
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] }
bridgehead-monitoring-lib = { git = "https://github.com/samply/bridgehead-monitoring" }
beam-lib = { git = "https://github.com/samply/beam", branch = "develop" }
serde_json = "1.0.104"
[profile.release]
#opt-level = "z" # Optimize for size.
lto = "fat" # Enable Link Time Optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
panic = "abort" # Abort on panic
strip = true # Automatically strip symbols from the binary.
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
# Config for 'cargo dist'
[workspace.metadata.dist]
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
[workspace.metadata.release]
publish = false