-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (29 loc) · 764 Bytes
/
Cargo.toml
File metadata and controls
33 lines (29 loc) · 764 Bytes
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
[package]
name = "betterstack-cli"
version = "0.7.0"
edition = "2024"
description = "Fast, AI-friendly CLI for Better Stack"
license = "MIT"
repository = "https://github.com/sounak98/betterstack-cli"
[[bin]]
name = "bs"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4.5.66"
libc = "0.2"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal"] }
toml = "1.0"
unicode-width = "0.2"
[dev-dependencies]
wiremock = "0.6"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true