41 lines
1.4 KiB
TOML
41 lines
1.4 KiB
TOML
[package]
|
|
name = "radicle-crypto"
|
|
description = "Radicle cryptographic primitives"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
version = "0.14.0"
|
|
authors = [
|
|
"cloudhead <cloudhead@radicle.xyz>",
|
|
"Fintan Halpenny <fintan.halpenny@gmail.com>",
|
|
]
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[features]
|
|
test = ["fastrand", "qcheck"]
|
|
ssh = ["radicle-ssh", "ssh-key"]
|
|
|
|
[dependencies]
|
|
amplify = { workspace = true }
|
|
cyphernet = { workspace = true, features = ["ed25519"], optional = true }
|
|
ec25519 = "0.1.0"
|
|
fastrand = { workspace = true, optional = true }
|
|
multibase = { workspace = true }
|
|
qcheck = { workspace = true, optional = true }
|
|
git-ref-format-core = { workspace = true, optional = true }
|
|
radicle-ssh = { workspace = true, optional = true }
|
|
schemars = { workspace = true, optional = true, features = ["derive", "std"] }
|
|
serde = { workspace = true, features = ["derive", "std"] }
|
|
signature = { workspace = true }
|
|
sqlite = { workspace = true, features = ["bundled"], optional = true }
|
|
ssh-key = { version = "0.6.3", default-features = false, features = ["std", "encryption", "getrandom"], optional = true }
|
|
thiserror = { workspace = true, default-features = true }
|
|
zeroize = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
fastrand = { workspace = true }
|
|
qcheck = { workspace = true }
|
|
qcheck-macros = { workspace = true }
|
|
tempfile = { workspace = true }
|