I'm so dumb, this feature is a flag in Rust. How do I enable it?

Reply to this note

Please Login to reply.

Discussion

You have to enable it in the `Cargo.toml`:

```toml

nostr-sdk = { version = "0.37", features = ["nip59"] }

```

You can find all features here: https://github.com/rust-nostr/nostr/blob/master/crates%2Fnostr-sdk%2FREADME.md#crate-feature-flags

TYVM! :) <3