Zion Boggan
repos/Oversight/oversight-rust/oversight-cli/Cargo.toml
zionboggan.com ↗
25 lines · toml
History for this file →
1
[package]
2
name = "oversight-cli"
3
version.workspace = true
4
edition.workspace = true
5
rust-version.workspace = true
6
license.workspace = true
7
description = "Command-line tool for Oversight: keygen, seal, open, inspect"
8
default-run = "oversight"
9
 
10
[[bin]]
11
name = "oversight"
12
path = "src/main.rs"
13
 
14
[dependencies]
15
oversight-crypto = { path = "../oversight-crypto" }
16
oversight-container = { path = "../oversight-container" }
17
oversight-manifest = { path = "../oversight-manifest" }
18
oversight-watermark = { path = "../oversight-watermark" }
19
oversight-formats = { path = "../oversight-formats" }
20
oversight-policy = { path = "../oversight-policy" }
21
clap.workspace = true
22
serde.workspace = true
23
serde_json.workspace = true
24
hex.workspace = true
25
thiserror.workspace = true