mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-14 23:19:07 -05:00
Begin modules for nostr protocol
This commit is contained in:
parent
cf6171aadc
commit
b2ca2f6743
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -307,6 +307,7 @@ dependencies = [
|
||||||
"env_logger",
|
"env_logger",
|
||||||
"futures-util",
|
"futures-util",
|
||||||
"log",
|
"log",
|
||||||
|
"thiserror",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tokio-tungstenite",
|
"tokio-tungstenite",
|
||||||
"tungstenite",
|
"tungstenite",
|
||||||
|
|
|
@ -12,3 +12,4 @@ tokio = { version = "1.14.0", features = ["full"] }
|
||||||
futures-util = "0.3.17"
|
futures-util = "0.3.17"
|
||||||
tokio-tungstenite = "0.16.0"
|
tokio-tungstenite = "0.16.0"
|
||||||
tungstenite = "0.16.0"
|
tungstenite = "0.16.0"
|
||||||
|
thiserror = "1.0.30"
|
||||||
|
|
1
src/event.rs
Normal file
1
src/event.rs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
pub struct Event {}
|
2
src/lib.rs
Normal file
2
src/lib.rs
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
pub mod error;
|
||||||
|
pub mod event;
|
Loading…
Reference in New Issue
Block a user