zrtp 0.1.0

RFC 6189 ZRTP protocol core, crypto helpers, and embeddable engine
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.76"
name = "zrtp"
version = "0.1.0"
build = false
include = [
    "Cargo.toml",
    "Cargo.lock",
    "LICENSE",
    "README.md",
    "CHANGELOG.md",
    "CONTRIBUTING.md",
    "RELEASE.md",
    "SECURITY.md",
    "docs/**",
    "examples/**",
    "src/**",
    "tests/**",
    "!node_modules/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "RFC 6189 ZRTP protocol core, crypto helpers, and embeddable engine"
homepage = "https://codeberg.org/nickolaev/zrtp.rs"
documentation = "https://docs.rs/zrtp"
readme = "README.md"
keywords = [
    "zrtp",
    "voip",
    "rtp",
    "security",
    "rfc6189",
]
categories = [
    "network-programming",
    "cryptography",
]
license = "BSD-2-Clause"
repository = "https://codeberg.org/nickolaev/zrtp.rs"

[features]
crypto = [
    "dep:sha2",
    "dep:hmac",
    "dep:aes",
    "dep:cfb-mode",
    "dep:rand",
    "dep:zeroize",
    "dep:p256",
    "dep:p384",
    "dep:p521",
    "dep:num-bigint",
    "dep:num-traits",
]
default = ["crypto"]

[lib]
name = "zrtp"
path = "src/lib.rs"

[[example]]
name = "engine"
path = "examples/engine.rs"

[[test]]
name = "protocol"
path = "tests/protocol.rs"

[dependencies.aes]
version = "0.8"
optional = true

[dependencies.base256]
version = "0.4.2"

[dependencies.cfb-mode]
version = "0.8"
optional = true

[dependencies.hmac]
version = "0.12"
optional = true

[dependencies.num-bigint]
version = "0.4"
features = ["rand"]
optional = true

[dependencies.num-traits]
version = "0.2"
optional = true

[dependencies.p256]
version = "0.13"
features = ["ecdh"]
optional = true

[dependencies.p384]
version = "0.13"
features = ["ecdh"]
optional = true

[dependencies.p521]
version = "0.13"
features = ["ecdh"]
optional = true

[dependencies.rand]
version = "0.8"
optional = true

[dependencies.sha2]
version = "0.10"
optional = true

[dependencies.zeroize]
version = "1"
optional = true