-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 750 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 750 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
[workspace]
resolver = "2"
members = [
"crates/license-guard",
"crates/license-forge",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/sassman/license-guard-rs"
authors = ["Sven Kanoldt <[email protected]>"]
[workspace.dependencies]
license-guard = { path = "crates/license-guard" }
ed25519-dalek = { version = "3.0.0-pre.6", features = ["rand_core"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
base64 = "0.22"
hex = "0.4"
thiserror = "2"
rand = "0.10"
dialoguer = "0.12"
chrono = "0.4"
clap = { version = "4", features = ["derive"] }
anyhow = "1"
dirs-lite = { version = "1", features = ["favor-xdg-style"] }