|
| 1 | +[package] |
| 2 | +name = "nostr-mls" |
| 3 | +version = "0.41.0" |
| 4 | +edition = "2021" |
| 5 | +description = "A simplified interface to build secure messaging apps on nostr with MLS." |
| 6 | +authors = [ "Jeff Gardner <[email protected]>", "Yuki Kishimoto <[email protected]>", "Rust Nostr Developers"] |
| 7 | +homepage.workspace = true |
| 8 | +repository.workspace = true |
| 9 | +license.workspace = true |
| 10 | +readme = "README.md" |
| 11 | +rust-version = "1.74.0" |
| 12 | +keywords = ["nostr", "mls", "openmls"] |
| 13 | + |
| 14 | +[features] |
| 15 | +default = [] |
| 16 | +test-utils = [] |
| 17 | + |
| 18 | +[dependencies] |
| 19 | +nostr = { workspace = true, features = ["std", "nip44"] } |
| 20 | +nostr-mls-storage.workspace = true |
| 21 | +openmls = { git = "https://github.com/openmls/openmls", rev = "4cc0f594b11262083ad9827b3b2033052c6ef99f", default-features = false } |
| 22 | +openmls_basic_credential = { git = "https://github.com/openmls/openmls", rev = "4cc0f594b11262083ad9827b3b2033052c6ef99f", default-features = false } |
| 23 | +openmls_rust_crypto = { git = "https://github.com/openmls/openmls", rev = "4cc0f594b11262083ad9827b3b2033052c6ef99f", default-features = false } |
| 24 | +openmls_traits = { git = "https://github.com/openmls/openmls", rev = "4cc0f594b11262083ad9827b3b2033052c6ef99f", default-features = false } |
| 25 | +tls_codec = "0.4" |
| 26 | +tracing = { workspace = true, features = ["std"] } |
| 27 | + |
| 28 | +[dev-dependencies] |
| 29 | +nostr-mls-memory-storage.workspace = true |
| 30 | +nostr-mls-sqlite-storage.workspace = true |
| 31 | +tempfile = "3.8" |
| 32 | +tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread"] } |
| 33 | +tracing-subscriber = { workspace = true, features = ["env-filter"] } |
| 34 | + |
| 35 | +[[example]] |
| 36 | +name = "mls_memory" |
| 37 | +path = "examples/mls_memory.rs" |
| 38 | + |
| 39 | +[[example]] |
| 40 | +name = "mls_sqlite" |
| 41 | +path = "examples/mls_sqlite.rs" |
0 commit comments