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.
19 lines
475 B
19 lines
475 B
[package]
|
|
name = "rear"
|
|
version = "0.1.0"
|
|
authors = ["rascul"]
|
|
edition = "2021"
|
|
description = "Error wrapper that with a message"
|
|
license = "MIT"
|
|
keywords = ["error", "result"]
|
|
|
|
[dependencies]
|
|
askama = { version = "0.12", optional = true }
|
|
log = { version = "0.4", features = ["std"], optional = true }
|
|
serde_json = { version = "1.0", optional = true }
|
|
tokio-postgres = { version = "0.7", optional = true}
|
|
ureq = { version = "2.6", optional = true }
|
|
|
|
[features]
|
|
default = []
|