egcode 0.0.2

no_std async streaming encrypt/decrypt tooling for gcode.
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 = "2024"
name = "egcode"
version = "0.0.2"
authors = ["James Gopsill"]
build = false
exclude = ["test-data"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "no_std async streaming encrypt/decrypt tooling for gcode."
readme = "README.md"
keywords = [
    "gcode",
    "manufacturing",
    "cryptography",
]
categories = [
    "no-std",
    "embedded",
    "cryptography",
    "wasm",
]
license = "MIT"
repository = "https://github.com/jamesgopsill/egcode"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--document-private-items"]

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

[dependencies.chacha20poly1305]
version = "0.10"
features = ["stream"]
default-features = false

[dependencies.embedded-io]
version = "0.7"

[dependencies.futures]
version = "0.3"
default-features = false

[dependencies.hkdf]
version = "0.12"
default-features = false

[dependencies.hmac]
version = "0.12"
default-features = false

[dependencies.rand_core]
version = "0.6"

[dependencies.sha2]
version = "0.10"
default-features = false

[dependencies.x25519-dalek]
version = "2"
features = ["static_secrets"]
default-features = false

[dev-dependencies.embedded-io-adapters]
version = "0.7"
features = ["std"]

[dev-dependencies.futures]
version = "0.3"

[dev-dependencies.rand_core]
version = "0.6"
features = ["getrandom"]