1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

centralize msrv and edition specs

This commit is contained in:
Rob Ede 2023-03-22 21:17:30 +00:00
parent 8a9c604c03
commit ad1f15eb18
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
9 changed files with 20 additions and 8 deletions

View File

@ -11,6 +11,10 @@ members = [
"actix-web-httpauth",
]
[workspace.package]
edition = "2018"
rust-version = "1.60"
[patch.crates-io]
actix-cors = { path = "./actix-cors" }
actix-identity = { path = "./actix-identity" }

View File

@ -10,7 +10,8 @@ keywords = ["actix", "cors", "web", "security", "crossorigin"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition = "2018"
edition.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]

View File

@ -10,7 +10,8 @@ keywords = ["actix", "auth", "identity", "web", "security"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition = "2018"
edition.workspace = true
rust-version.workspace = true
[lib]
name = "actix_identity"

View File

@ -10,7 +10,8 @@ keywords = ["actix-web", "rate-api", "rate-limit", "limitation"]
categories = ["asynchronous", "web-programming"]
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition = "2018"
edition.workspace = true
rust-version.workspace = true
[features]
default = ["session"]

View File

@ -1,7 +1,6 @@
[package]
name = "actix-protobuf"
version = "0.9.0"
edition = "2018"
authors = [
"kingxsp <jin.hb.zh@outlook.com>",
"Yuki Okushi <huyuumi.dev@gmail.com>",
@ -11,6 +10,8 @@ keywords = ["actix", "web", "protobuf", "protocol", "rpc"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition.workspace = true
rust-version.workspace = true
[lib]
name = "actix_protobuf"

View File

@ -8,7 +8,8 @@ keywords = ["actix", "redis", "async"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
categories = ["network-programming", "asynchronous"]
edition = "2018"
edition.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true

View File

@ -10,7 +10,8 @@ keywords = ["http", "web", "framework", "async", "session"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
license = "MIT OR Apache-2.0"
edition = "2018"
edition.workspace = true
rust-version.workspace = true
[package.metadata.docs.rs]
all-features = true

View File

@ -5,9 +5,10 @@ authors = [
"Joey Ezechiels <joey.ezechiels@gmail.com>",
"Rob Ede <robjtede@icloud.com>",
]
edition = "2018"
description = "Easily manage Actix Web's settings from a TOML file and environment variables"
license = "MIT OR Apache-2.0"
edition.workspace = true
rust-version.workspace = true
[dependencies]
actix-http = "3"

View File

@ -11,7 +11,8 @@ homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-extras.git"
categories = ["web-programming::http-server"]
license = "MIT OR Apache-2.0"
edition = "2018"
edition.workspace = true
rust-version.workspace = true
[lib]
name = "actix_web_httpauth"