-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (23 loc) · 896 Bytes
/
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
[package]
name = "ckms_gui"
version = "4.19.3"
edition = "2021"
description = "Graphical interface for the CLI to interact with Cosmian KMS"
[features]
fips = ["cosmian_kms_client/fips"]
[dependencies]
clap = "4.4"
cosmian_crypto_core = { version = "9.3", features = ["certificate"] }
cosmian_kms_cli = { git = "https://github.com/Cosmian/kms.git", package = "cosmian_kms_cli" }
cosmian_kms_client = { git = "https://github.com/Cosmian/kms.git", package = "cosmian_kms_client" }
cosmian_logger = { git = "https://github.com/Cosmian/kms.git", package = "cosmian_logger" }
klask = { git = "https://github.com/Cosmian/klask.git" }
tokio = { version = "1.34", features = ["full"] }
env_logger = "0.11"
tracing = "0.1"
[build-dependencies]
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1", features = ["derive"] }
[profile.release]
lto = "thin"
strip = true