15 lines
506 B
TOML
15 lines
506 B
TOML
[package]
|
|
name = "ukey2_shell"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
crypto_provider_rustcrypto = { workspace = true, features = [ "alloc" ] }
|
|
ukey2_rs = { version = "0.1.0", path = "../ukey2" }
|
|
ukey2_connections = { version = "0.1.0", path = "../ukey2_connections" }
|
|
|
|
clap = { version = "4.0.17", default-features = false, features = ["std", "derive"] }
|