Rebrand the Rust client crate (coven/ → hh/, package+binary "hack-house"), README, CLI strings, and branch (coven → hack-house). Gitea repo renamed cmd-chat → hack-house to match. Crypto/server logic unchanged; selftest + golden-vector test still green, binary is now `hack-house`. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
417 B
Python
20 lines
417 B
Python
"""
|
|
Timer context manager, only used in debug.
|
|
|
|
"""
|
|
|
|
from time import time
|
|
|
|
import contextlib
|
|
from typing import Generator
|
|
|
|
|
|
@contextlib.contextmanager
|
|
def timer(subject: str = "time") -> Generator[None, None, None]:
|
|
"""print the elapsed time. (only used in debugging)"""
|
|
start = time()
|
|
yield
|
|
elapsed = time() - start
|
|
elapsed_ms = elapsed * 1000
|
|
print(f"{subject} elapsed {elapsed_ms:.1f}ms")
|