- clients/README.md: canonical API surface and error type reference - clients/testdata/: shared JSON response fixtures - clients/go/: mciasgoclient package; net/http + TLS 1.2+; sync.RWMutex token state; DisallowUnknownFields on all decoders; 25 tests pass - clients/rust/: async mcias-client crate; reqwest+rustls (no OpenSSL); thiserror MciasError enum; Arc<RwLock> token state; 22+1 tests pass; cargo clippy -D warnings clean - clients/lisp/: ASDF mcias-client; dexador HTTP, yason JSON; mcias-error condition hierarchy; Hunchentoot mock-dispatcher; 37 fiveam checks pass on SBCL 2.6.1; yason boolean normalisation in validate-token - clients/python/: mcias_client package (Python 3.11+); httpx sync; py.typed; dataclasses; 32 pytest tests; mypy --strict + ruff clean - test/mock/mockserver.go: in-memory mock server for Go client tests - ARCHITECTURE.md §19: updated per-language notes to match implementation - PROGRESS.md: Phase 9 marked complete - .gitignore: exclude clients/rust/target/, python .venv, .pytest_cache, .fasl files Security: token never logged or exposed in error messages in any library; TLS enforced in all four languages; token stored under lock/mutex/RwLock
24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
cargo:rustc-check-cfg=cfg(fuzzing)
|
|
cargo:rustc-check-cfg=cfg(no_is_available)
|
|
cargo:rustc-check-cfg=cfg(no_literal_byte_character)
|
|
cargo:rustc-check-cfg=cfg(no_literal_c_string)
|
|
cargo:rustc-check-cfg=cfg(no_source_text)
|
|
cargo:rustc-check-cfg=cfg(proc_macro_span)
|
|
cargo:rustc-check-cfg=cfg(proc_macro_span_file)
|
|
cargo:rustc-check-cfg=cfg(proc_macro_span_location)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_backtrace)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_build_probe)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing)
|
|
cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt)
|
|
cargo:rustc-check-cfg=cfg(randomize_layout)
|
|
cargo:rustc-check-cfg=cfg(span_locations)
|
|
cargo:rustc-check-cfg=cfg(super_unstable)
|
|
cargo:rustc-check-cfg=cfg(wrap_proc_macro)
|
|
cargo:rerun-if-changed=src/probe/proc_macro_span.rs
|
|
cargo:rustc-cfg=wrap_proc_macro
|
|
cargo:rerun-if-changed=src/probe/proc_macro_span_location.rs
|
|
cargo:rustc-cfg=proc_macro_span_location
|
|
cargo:rerun-if-changed=src/probe/proc_macro_span_file.rs
|
|
cargo:rustc-cfg=proc_macro_span_file
|
|
cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP
|