[package]
edition = "2021"
name = "rustzk"
version = "0.4.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure Rust implementation of the ZK protocol for attendance devices."
readme = "README.md"
keywords = [
"zk",
"attendance",
"protocol",
"iot",
]
categories = [
"embedded",
"network-programming",
]
license = "MIT"
repository = "https://github.com/vkaylee/rustzk"
[lib]
name = "rustzk"
path = "src/lib.rs"
[[bin]]
name = "rustzk"
path = "src/main.rs"
[[example]]
name = "check_device_info"
path = "examples/check_device_info.rs"
[[example]]
name = "check_time"
path = "examples/check_time.rs"
[[example]]
name = "check_timezone"
path = "examples/check_timezone.rs"
[[example]]
name = "fingerprint_management"
path = "examples/fingerprint_management.rs"
[[example]]
name = "get_attendance"
path = "examples/get_attendance.rs"
[[example]]
name = "live_events"
path = "examples/live_events.rs"
[[example]]
name = "user_management"
path = "examples/user_management.rs"
[[test]]
name = "ack_flow_test"
path = "tests/ack_flow_test.rs"
[[test]]
name = "auth_tests"
path = "tests/auth_tests.rs"
[[test]]
name = "client_tests"
path = "tests/client_tests.rs"
[[test]]
name = "drop_tests"
path = "tests/drop_tests.rs"
[[test]]
name = "fingerprint_tests"
path = "tests/fingerprint_tests.rs"
[[test]]
name = "fuzz_allocation"
path = "tests/fuzz_allocation.rs"
[[test]]
name = "live_event_tests"
path = "tests/live_event_tests.rs"
[[test]]
name = "misalignment_tests"
path = "tests/misalignment_tests.rs"
[[test]]
name = "parsing_tests"
path = "tests/parsing_tests.rs"
[[test]]
name = "safety_tests"
path = "tests/safety_tests.rs"
[[test]]
name = "security_memory"
path = "tests/security_memory.rs"
[[test]]
name = "split_response_tests"
path = "tests/split_response_tests.rs"
[[test]]
name = "time_sync_tests"
path = "tests/time_sync_tests.rs"
[[test]]
name = "user_tests"
path = "tests/user_tests.rs"
[[test]]
name = "v045_features_test"
path = "tests/v045_features_test.rs"
[dependencies.bitflags]
version = "2.4"
[dependencies.byteorder]
version = "1.5"
[dependencies.chrono]
version = "0.4"
[dependencies.encoding_rs]
version = "0.8"
[dependencies.log]
version = "0.4.29"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.env_logger]
version = "0.11.9"