Packages

SSHKeyEx is a library for working with SSH keys in Elixir through rust `ssh_key` as nif implementations

Current section

Files

Jump to
ssh_key_ex native ssh_key_nif Cargo.toml
Raw

native/ssh_key_nif/Cargo.toml

[package]
name = "ssh_key_nif"
version = "0.4.0"
authors = ["Denny Mueller"]
edition = "2021"
[features]
alloc = []
default = ["nif_version_2_15"]
nif_version_2_15 = ["rustler/nif_version_2_15"]
nif_version_2_16 = ["rustler/nif_version_2_16"]
[lib]
name = "ssh_key_nif"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
rustler = "0.36.1"
ssh-key = "0.6.7"