[package]
edition = "2021"
name = "mostro-webtool"
version = "0.1.0"
authors = ["Francisco Calderón <fjcalderon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A web-based tool for generating deterministic keys and building Mostro protocol messages."
homepage = "https://mostro.network"
readme = "README.md"
license = "MIT"
repository = "https://github.com/MostroP2P/mostro-webtools"
[lib]
name = "mostro_webtool"
path = "src/lib.rs"
[[bin]]
name = "mostro-webtool"
path = "src/main.rs"
[[test]]
name = "gift_wrap_test"
path = "tests/gift_wrap_test.rs"
[[test]]
name = "trade_key_api"
path = "tests/trade_key_api.rs"
[dependencies.axum]
version = "0.7.5"
features = ["macros"]
[dependencies.bip39]
version = "2.2.0"
features = ["rand"]
[dependencies.hex]
version = "0.4"
[dependencies.mostro-core]
version = "0.6.55"
[dependencies.nostr-sdk]
version = "0.43.0"
features = [
"nip06",
"nip44",
"nip59",
]
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1.0.204"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.117"
[dependencies.sha2]
version = "0.10"
[dependencies.tokio]
version = "1.38.0"
features = [
"rt-multi-thread",
"macros",
"signal",
]
[dependencies.tower-http]
version = "0.5"
features = ["fs"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]
[dev-dependencies.http-body-util]
version = "0.1"
[dev-dependencies.tower]
version = "0.4"
features = ["util"]