bd67bfc92e
A self-hostable Grin payment server for shops, creators, and sites: show a code, Grin lands in your wallet, with a verifiable Grin payment proof on receive. Workspace crates (gp-core / gp-nostr / gp-server / gp-wallet / gp-goblin-sender), a WooCommerce connector, a hosted /pay/<token> checkout, and NIP-44 v3 gift-wrapped payment DMs carried over the Nym mixnet. All secrets are read from the environment; none are committed.
30 lines
574 B
TOML
30 lines
574 B
TOML
[workspace]
|
|
resolver = "2"
|
|
members = [
|
|
"crates/gp-wallet",
|
|
"crates/gp-goblin-sender",
|
|
"crates/gp-nostr",
|
|
"crates/gp-core",
|
|
"crates/gp-server",
|
|
]
|
|
|
|
[workspace.package]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
|
|
[workspace.dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
sqlx = { version = "0.8", default-features = false, features = [
|
|
"runtime-tokio-rustls",
|
|
"sqlite",
|
|
"migrate",
|
|
"macros",
|
|
] }
|
|
tokio = { version = "1", default-features = false }
|
|
|
|
[profile.release]
|
|
opt-level = 2
|
|
strip = true
|