Skip to content

Commit

Permalink
WIP: rough subscription manager API proposal
Browse files Browse the repository at this point in the history
  • Loading branch information
ksedgwic committed Dec 19, 2024
1 parent 11274ac commit 084bd54
Show file tree
Hide file tree
Showing 6 changed files with 474 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions crates/notedeck/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,13 @@ serde = { workspace = true }
hex = { workspace = true }
thiserror = { workspace = true }
puffin = { workspace = true, optional = true }
futures = "0.3.31"

[dev-dependencies]
tempfile = { workspace = true }
tokio = { workspace = true }
nostr = { workspace = true }
sha2 = "0.10.8"

[target.'cfg(target_os = "macos")'.dependencies]
security-framework = { workspace = true }
Expand Down
5 changes: 5 additions & 0 deletions crates/notedeck/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ mod notecache;
mod result;
pub mod storage;
mod style;
pub mod submgr;
pub mod theme;
mod theme_handler;
mod time;
Expand All @@ -20,6 +21,10 @@ pub mod ui;
mod unknowns;
mod user_account;

/// Various utilities
#[macro_use]
pub mod util;

pub use accounts::{AccountData, Accounts, AccountsAction, AddAccountAction};
pub use app::App;
pub use args::Args;
Expand Down
Loading

0 comments on commit 084bd54

Please sign in to comment.