diff options
author | sommerfeld <sommerfeld@sommerfeld.dev> | 2024-06-28 14:53:43 +0100 |
---|---|---|
committer | sommerfeld <sommerfeld@sommerfeld.dev> | 2024-06-28 14:53:43 +0100 |
commit | ef34f0bb4798a0d1410fffc974f084e4c6cfb920 (patch) | |
tree | 927965d3de187e2af5d594e6018b635a416ef6fb /Cargo.toml | |
download | viewercount-ef34f0bb4798a0d1410fffc974f084e4c6cfb920.tar.gz viewercount-ef34f0bb4798a0d1410fffc974f084e4c6cfb920.tar.bz2 viewercount-ef34f0bb4798a0d1410fffc974f084e4c6cfb920.zip |
Initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f364ef8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,26 @@ +[package] +name = "viewercount" +version = "0.1.0" +edition = "2021" +authors = ["sommerfeld <sommerfeld@sommerfeld.dev>"] +description = "Updates nostr Live Events with the number of HLS connections" +repository = "https://github.com/sommerfelddev/viewercount" +license = "MIT" +keywords = ["nostr", "livestream", "daemon"] +categories = ["command-line-utilities"] + +[dependencies] +anyhow = "1.0.86" +clap = { version = "4.5.7", features = ["derive"] } +dirs = "5.0.1" +futures = "0.3.30" +human-panic = "2.0.0" +log = "0.4.21" +nostr-relay-pool = "0.32.0" +nostr-sdk = { version = "0.32.0", default-features = false } +nostr-signer = { version = "0.32.0", default-features = false, features = ["nip46"] } +pretty_env_logger = "0.5.0" +procfs = { version = "0.16.0", default-features = false } +serde = { version = "1.0.203", features = ["derive"] } +serde_json = "1.0.118" +tokio = { version = "1.38.0", features = ["rt-multi-thread", "signal", "time"] } |