forked from packages/rocket_session
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
603 B
21 lines
603 B
[package]
|
|
name = "rocket_session"
|
|
version = "0.3.0"
|
|
authors = ["Ondřej Hruška <ondra@ondrovo.com>"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Rocket.rs plug-in for cookie-based sessions holding arbitrary data"
|
|
repository = "https://git.ondrovo.com/packages/rocket_session"
|
|
readme = "README.md"
|
|
keywords = ["rocket", "rocket-rs", "session", "cookie"]
|
|
categories = [
|
|
"web-programming",
|
|
"web-programming::http-server"
|
|
]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.8"
|
|
rocket = "0.5.0-rc.2"
|
|
parking_lot = "0.12"
|
|
|