gabrielsimmer.com/Cargo.toml
Gabriel Simmer 8a65ef8cb4
Some checks failed
Fly Deploy / Deploy app (push) Failing after 3m6s
Implement basic gossip protocol
Disabled unless peers are provided, communicates with other
instances (up to 3, and then a random selection of a third of the
available hosts). Still to do:

 - [ ] DNS based peer discovery
 - [ ] Probing of instances / healthchecks
 - [ ] Test propogation of membership changes/additions
2023-10-07 17:15:15 +01:00

35 lines
1.1 KiB
TOML

[package]
name = "quick-start"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.18", features = ["json"] }
sqlx = { version = "0.7", features = [ "runtime-tokio", "tls-rustls", "sqlite" ] }
serde = { version = "1.0.167", features = ["derive"] }
tokio = { version = "1.29.1", features = ["full"] }
maud = { version = "*", features = ["axum"] }
tower = { version = "0.4.13", features = ["util"] }
hyper = { version = "0.14", features = ["full"] }
tower-http = { version = "0.4.1", features = ["fs", "add-extension", "auth", "compression-full", "trace"] }
sha2 = "0.10.7"
hex = "0.4"
lazy_static = "1.4.0"
futures = "0.3.28"
comrak = "0.1"
orgize = { git = "https://git.gmem.ca/arch/orgize.git", branch = "org-images" }
clap = { version = "4.0", features = ["derive"] }
serde_dhall = "0.12.1"
frontmatter = "0.4.0"
file-format = "0.18.0"
rss = "2.0.6"
time = { version = "0.3.28", features = ["parsing", "formatting", "macros"] }
async-trait = "0.1.73"
crossbeam = "0.8.2"
rand = "0.8.5"
prost = "0.12"
[build-dependencies]
prost-build = "0.12"