Most likely that it's pointing to local dependencies still 😂 I've made quite a few changes in a bunch of upstream libraries. I'll get those cleaned up very soon.
nostr:nprofile1qqspwwwexlwgcrrnwz4zwkze8rq3ncjug8mvgsd96dxx6wzs8ccndmcpp4mhxue69uhkummn9ekx7mqpzfmhxue69uhhyetvv9ujue3h0ghxjmcpzamhxue69uhkummnw3ezuendwsh8w6t69e3xj7sak9fte I am having issues compiling white noise.
the trait `openmls_traits::storage::StorageProvider<1>` is not implemented for `SledStorage`
Seems like a dependency issue. Any tips?
Discussion
Please give me a ping when it's in a state that it can compile.
(To try to compile I removed the Mac compilation since I am on Linux...)
Will do. It's definitely not quite ready for use though.
The idea is to see if I can help to bring it to a state where it is ready for use 😀
Ok - I just pushed a change to lock all the deps to specific commits.
Give it a shot. To get it running locally you should be able to run:
`$ bun i`
`$ RUST_LOG=DEBUG bun tauri dev`
But I've not tried running it on Linux yet so let me know what happens. 😉
Still not building.
I get the error
Error[E0599]: no variant or associated item named `KeyPackage` found for enum `nostr_sdk::Kind` in the current scope
--> src/accounts.rs:206:21
|
206 | .kind(Kind::KeyPackage)
| ^^^^^^^^^^ variant or associated item not found in `Kind`
(I cloned your nostr-sdk to the right location)
I switched this line in Cargo.toml
nostr-sdk = { version = "0.35", features = ["ndb"], path = "../../rust-nostr/crates/nostr-sdk" }
To this line
nostr-sdk = { git = "https://github.com/erskingardner/rust-nostr", branch = "master" }
I still get the same error