misanthropic 0.5.1

An async, ergonomic, client for Anthropic's Messages API
1
2
3
4
5
6
7
8
9
10
//! [`Key`] is a wrapper around an Anthropic API key.

#[cfg(feature = "memsecurity")]
mod encrypted;
#[cfg(feature = "memsecurity")]
pub use encrypted::{InvalidKeyLength, Key};
#[cfg(not(feature = "memsecurity"))]
mod unencrypted;
#[cfg(not(feature = "memsecurity"))]
pub use unencrypted::{InvalidKeyLength, Key};