mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-04-19 22:44:38 +00:00
the next release will be 0.1.0, not 0.0.5
This commit is contained in:
parent
d8c4215cc2
commit
022edede62
3 changed files with 10 additions and 10 deletions
|
@ -17,7 +17,7 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
||||||
fake = "2.2"
|
fake = "2.2"
|
||||||
gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
|
gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
|
||||||
gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
|
gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
|
||||||
gotham_restful = { version = "0.0.5-dev", features = ["auth", "openapi"] }
|
gotham_restful = { version = "0.1.0-dev", features = ["auth", "openapi"] }
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
log4rs = { version = "0.11", features = ["console_appender"], default-features = false }
|
log4rs = { version = "0.11", features = ["console_appender"], default-features = false }
|
||||||
serde = "1.0.106"
|
serde = "1.0.106"
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gotham_restful"
|
name = "gotham_restful"
|
||||||
version = "0.0.5-dev"
|
version = "0.1.0-dev"
|
||||||
authors = ["Dominic Meiser <git@msrd0.de>"]
|
authors = ["Dominic Meiser <git@msrd0.de>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "RESTful additions for Gotham"
|
description = "RESTful additions for Gotham"
|
||||||
|
@ -23,7 +23,7 @@ futures-util = "0.3.4"
|
||||||
gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
|
gotham = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev", default-features = false }
|
||||||
gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev" }
|
gotham_derive = { git = "https://github.com/gotham-rs/gotham", version = "0.5.0-dev" }
|
||||||
gotham_middleware_diesel = { git = "https://github.com/gotham-rs/gotham", version = "0.1.0", optional = true }
|
gotham_middleware_diesel = { git = "https://github.com/gotham-rs/gotham", version = "0.1.0", optional = true }
|
||||||
gotham_restful_derive = { version = "0.0.4-dev" }
|
gotham_restful_derive = { version = "0.1.0-dev" }
|
||||||
indexmap = { version = "1.3.2", optional = true }
|
indexmap = { version = "1.3.2", optional = true }
|
||||||
itertools = "0.9.0"
|
itertools = "0.9.0"
|
||||||
jsonwebtoken = { version = "7.1.0", optional = true }
|
jsonwebtoken = { version = "7.1.0", optional = true }
|
||||||
|
@ -31,14 +31,14 @@ log = "0.4.8"
|
||||||
mime = "0.3.16"
|
mime = "0.3.16"
|
||||||
openapiv3 = { version = "0.3", optional = true }
|
openapiv3 = { version = "0.3", optional = true }
|
||||||
serde = { version = "1.0.106", features = ["derive"] }
|
serde = { version = "1.0.106", features = ["derive"] }
|
||||||
serde_json = "1.0.51"
|
serde_json = "1.0.52"
|
||||||
thiserror = "1.0.15"
|
thiserror = "1.0.16"
|
||||||
uuid = { version = ">= 0.1, < 0.9", optional = true }
|
uuid = { version = "0.8.1", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
diesel = { version = "1.4.4", features = ["postgres"] }
|
diesel = { version = "1.4.4", features = ["postgres"] }
|
||||||
futures-executor = "0.3.4"
|
futures-executor = "0.3.4"
|
||||||
paste = "0.1.10"
|
paste = "0.1.12"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["errorlog"]
|
default = ["errorlog"]
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "gotham_restful_derive"
|
name = "gotham_restful_derive"
|
||||||
version = "0.0.4-dev"
|
version = "0.1.0-dev"
|
||||||
authors = ["Dominic Meiser <git@msrd0.de>"]
|
authors = ["Dominic Meiser <git@msrd0.de>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "RESTful additions for Gotham - Derive"
|
description = "RESTful additions for Gotham - Derive"
|
||||||
|
@ -19,8 +19,8 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
||||||
[dependencies]
|
[dependencies]
|
||||||
heck = "0.3.1"
|
heck = "0.3.1"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
proc-macro2 = "1.0.10"
|
proc-macro2 = "1.0.12"
|
||||||
quote = "1.0.3"
|
quote = "1.0.4"
|
||||||
regex = "1.3.7"
|
regex = "1.3.7"
|
||||||
syn = "1.0.18"
|
syn = "1.0.18"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue