mirror of
https://gitlab.com/msrd0/gotham-restful.git
synced 2025-02-22 20:52:27 +00:00
bump version to 0.1.0-rc0
This commit is contained in:
parent
912f030bfd
commit
f72b9ac797
3 changed files with 18 additions and 19 deletions
21
Cargo.toml
21
Cargo.toml
|
@ -5,7 +5,7 @@ members = ["derive", "example"]
|
|||
|
||||
[package]
|
||||
name = "gotham_restful"
|
||||
version = "0.1.0-dev"
|
||||
version = "0.1.0-rc0"
|
||||
authors = ["Dominic Meiser <git@msrd0.de>"]
|
||||
edition = "2018"
|
||||
description = "RESTful additions for the gotham web framework"
|
||||
|
@ -18,31 +18,31 @@ repository = "https://gitlab.com/msrd0/gotham-restful"
|
|||
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
||||
|
||||
[dependencies]
|
||||
base64 = { version = "0.12.0", optional = true }
|
||||
base64 = { version = "0.12.1", optional = true }
|
||||
chrono = { version = "0.4.11", features = ["serde"], optional = true }
|
||||
cookie = { version = "0.13.3", optional = true }
|
||||
futures-core = "0.3.4"
|
||||
futures-util = "0.3.4"
|
||||
futures-core = "0.3.5"
|
||||
futures-util = "0.3.5"
|
||||
gotham = { version = "0.5.0-rc.1", default-features = false }
|
||||
gotham_derive = "0.5.0-rc.1"
|
||||
gotham_middleware_diesel = { version = "0.1.2", optional = true }
|
||||
gotham_restful_derive = { version = "0.1.0-dev" }
|
||||
gotham_restful_derive = { version = "0.1.0-rc0" }
|
||||
indexmap = { version = "1.3.2", optional = true }
|
||||
itertools = "0.9.0"
|
||||
jsonwebtoken = { version = "7.1.0", optional = true }
|
||||
log = "0.4.8"
|
||||
mime = "0.3.16"
|
||||
openapiv3 = { version = "0.3", optional = true }
|
||||
serde = { version = "1.0.106", features = ["derive"] }
|
||||
serde_json = "1.0.52"
|
||||
openapiv3 = { version = "0.3.2", optional = true }
|
||||
serde = { version = "1.0.110", features = ["derive"] }
|
||||
serde_json = "1.0.53"
|
||||
uuid = { version = "0.8.1", optional = true }
|
||||
|
||||
[dev-dependencies]
|
||||
diesel = { version = "1.4.4", features = ["postgres"] }
|
||||
futures-executor = "0.3.4"
|
||||
futures-executor = "0.3.5"
|
||||
paste = "0.1.12"
|
||||
thiserror = "1.0.18"
|
||||
trybuild = "1.0.26"
|
||||
trybuild = "1.0.27"
|
||||
|
||||
[features]
|
||||
default = ["cors", "errorlog"]
|
||||
|
@ -58,4 +58,3 @@ all-features = true
|
|||
[patch.crates-io]
|
||||
gotham_restful = { path = "." }
|
||||
gotham_restful_derive = { path = "./derive" }
|
||||
openapiv3 = { git = "https://github.com/glademiller/openapiv3", rev = "4c3bd95c966a3f9d59bb494c3d8e30c5c3068bdb" }
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
name = "gotham_restful_derive"
|
||||
version = "0.1.0-dev"
|
||||
version = "0.1.0-rc0"
|
||||
authors = ["Dominic Meiser <git@msrd0.de>"]
|
||||
edition = "2018"
|
||||
description = "RESTful additions for the gotham web framework - Derive"
|
||||
|
@ -18,9 +18,9 @@ gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
|||
|
||||
[dependencies]
|
||||
heck = "0.3.1"
|
||||
proc-macro2 = "1.0.12"
|
||||
quote = "1.0.4"
|
||||
syn = "1.0.18"
|
||||
proc-macro2 = "1.0.13"
|
||||
quote = "1.0.6"
|
||||
syn = "1.0.22"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
|
|
|
@ -14,10 +14,10 @@ repository = "https://gitlab.com/msrd0/gotham-restful"
|
|||
gitlab = { repository = "msrd0/gotham-restful", branch = "master" }
|
||||
|
||||
[dependencies]
|
||||
fake = "2.2"
|
||||
fake = "2.2.2"
|
||||
gotham = { version = "0.5.0-rc.1", default-features = false }
|
||||
gotham_derive = "0.5.0-rc.1"
|
||||
gotham_restful = { version = "0.1.0-dev", features = ["auth", "openapi"] }
|
||||
gotham_restful = { version = "0.1.0-rc0", features = ["auth", "openapi"] }
|
||||
log = "0.4.8"
|
||||
log4rs = { version = "0.12", features = ["console_appender"], default-features = false }
|
||||
serde = "1.0.106"
|
||||
log4rs = { version = "0.12.0", features = ["console_appender"], default-features = false }
|
||||
serde = "1.0.110"
|
||||
|
|
Loading…
Add table
Reference in a new issue