-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 807 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 807 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
[package]
name = "bl"
version = "0.7.2"
edition = "2024"
license = "MIT OR Apache-2.0"
authors = ["okkey"]
[[bin]]
name = "bl"
path = "src/main.rs"
[dependencies]
anyhow = "1"
clap = { version = "4", features = ["derive"] }
dirs = "6"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "multipart", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "1.1"
rpassword = "7"
keyring = { version = "3", default-features = false, features = ["async-secret-service", "crypto-rust"] }
anstream = "1.0"
owo-colors = "4"
open = "5"
getrandom = "0.4"
[target.'cfg(windows)'.dependencies]
keyring = { version = "3", features = ["windows-native"] }
[dev-dependencies]
httpmock = { version = "0.8", default-features = false }
tempfile = "3"