mirror of
https://github.com/mikedilger/chorus.git
synced 2026-01-03 06:15:33 +00:00
26 lines
820 B
TOML
26 lines
820 B
TOML
[package]
|
|
name = "chorus"
|
|
version = "0.1.0"
|
|
description = "A personal relay for nostr"
|
|
authors = ["Mike Dilger <mike@mikedilger.com>"]
|
|
license = "MIT"
|
|
repository = "https://github.com/mikedilger/chorus"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
env_logger = "0.10"
|
|
futures = "0.3"
|
|
heed = { git = "https://github.com/meilisearch/heed", rev = "64fd6fec293c0dee94855b8267557ce03e7ce5d8" }
|
|
hyper = { version = "0.14", features = [ "http1", "server", "runtime", "stream" ] }
|
|
lazy_static = "1.4"
|
|
log = "0.4"
|
|
mmap-append = { git = "https://github.com/mikedilger/mmap-append", rev = "0d20e193e7f13a442865a4a40a5da9a120e87411" }
|
|
ron = "0.8"
|
|
rustls-pemfile = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", features = [ "full" ] }
|
|
tokio-rustls = "0.24"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3" |