Create `NetworkedSubstack`.
# giterated-protocol - Create `NetworkedSubstack` which will handle all networked operations giterated needs - Add support for `NetworkedSubstack` for both the daemon and client - Pipe everything through but leave APIs temp # `giterated-daemon` - Remove a bunch of random old code, dead code, and files that aren't needed. - Moved all connection handling to `client.rs`, simplified connection logic with new types
parent: tbd commit: 202bb12
1 | [package] |
2 | name = "giterated-protocol" |
3 | version = "0.1.0" |
4 | authors = ["Amber Kowalski"] |
5 | edition = "2021" |
6 | rust-version = "1.70.0" |
7 | description = "Giterated's Network Protocol Stack" |
8 | homepage = "https://giterated.dev/ambee/giterated" |
9 | repository = "https://giterated.dev/ambee/giterated" |
10 | license = "MIT OR Apache-2.0" |
11 | keywords = ["giterated"] |
12 | |
13 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
14 | |
15 | [dependencies] |
16 | giterated-stack = {path = "../giterated-stack" } |
17 | serde = { version = "1.0.188", features = [ "derive" ]} |
18 | tracing = "0.1" |