grin/api/Cargo.toml
Ignotus Peverell a402f39633
Custom REST API operations in addition to CRUD
Allows for custom operations associated with POST requests under
the main resource path. For example, in addition to POST on /user
to create a user, allow easy support for /user/login and
/user/logout.
2017-05-19 14:35:49 -07:00

14 lines
264 B
TOML

[package]
name = "grin_api"
version = "0.1.0"
authors = ["Ignotus Peverell <igno.peverell@protonmail.com>"]
workspace = ".."
[dependencies]
grin_chain = { path = "../chain" }
iron = "~0.5.1"
log = "~0.3"
router = "~0.5.1"
serde = "~0.9.10"
serde_json = "~0.9.8"