[package] name = "synor-hosting" version = "0.1.0" edition = "2021" description = "Decentralized web hosting for the Synor blockchain" license = "MIT" authors = ["Synor Team"] repository = "https://github.com/synor/synor" [dependencies] # Core thiserror = "1" serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", features = ["full"] } async-trait = "0.1" # Cryptography blake3 = "1" ed25519-dalek = "2" # Encoding bs58 = "0.5" hex = "0.4" # DNS verification trust-dns-resolver = { version = "0.23", optional = true } # Local workspace crates synor-types = { path = "../synor-types" } synor-crypto = { path = "../synor-crypto" } synor-storage = { path = "../synor-storage" } [features] default = [] dns = ["trust-dns-resolver"] [dev-dependencies] tempfile = "3"