mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-23 23:51:06 +01:00
inline workspace package properties
msrv needs to be 1.64
This commit is contained in:
parent
b948ac9f7a
commit
77ee27b4ae
@ -11,9 +11,10 @@ members = [
|
|||||||
"actix-web-httpauth",
|
"actix-web-httpauth",
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.package]
|
# TODO(MSRV 1.64)
|
||||||
edition = "2018"
|
# [workspace.package]
|
||||||
rust-version = "1.60"
|
# edition = "2018"
|
||||||
|
# rust-version = "1.60"
|
||||||
|
|
||||||
[patch.crates-io]
|
[patch.crates-io]
|
||||||
actix-cors = { path = "./actix-cors" }
|
actix-cors = { path = "./actix-cors" }
|
||||||
|
@ -10,8 +10,8 @@ keywords = ["actix", "cors", "web", "security", "crossorigin"]
|
|||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
@ -10,8 +10,8 @@ keywords = ["actix", "auth", "identity", "web", "security"]
|
|||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_identity"
|
name = "actix_identity"
|
||||||
|
@ -10,8 +10,8 @@ keywords = ["actix-web", "rate-api", "rate-limit", "limitation"]
|
|||||||
categories = ["asynchronous", "web-programming"]
|
categories = ["asynchronous", "web-programming"]
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["session"]
|
default = ["session"]
|
||||||
|
@ -10,8 +10,8 @@ keywords = ["actix", "web", "protobuf", "protocol", "rpc"]
|
|||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_protobuf"
|
name = "actix_protobuf"
|
||||||
|
@ -8,8 +8,8 @@ keywords = ["actix", "redis", "async"]
|
|||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
categories = ["network-programming", "asynchronous"]
|
categories = ["network-programming", "asynchronous"]
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
@ -10,8 +10,8 @@ keywords = ["http", "web", "framework", "async", "session"]
|
|||||||
homepage = "https://actix.rs"
|
homepage = "https://actix.rs"
|
||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
@ -7,8 +7,8 @@ authors = [
|
|||||||
]
|
]
|
||||||
description = "Easily manage Actix Web's settings from a TOML file and environment variables"
|
description = "Easily manage Actix Web's settings from a TOML file and environment variables"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
actix-http = "3"
|
actix-http = "3"
|
||||||
|
@ -11,8 +11,8 @@ homepage = "https://actix.rs"
|
|||||||
repository = "https://github.com/actix/actix-extras.git"
|
repository = "https://github.com/actix/actix-extras.git"
|
||||||
categories = ["web-programming::http-server"]
|
categories = ["web-programming::http-server"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition.workspace = true
|
edition = "2018"
|
||||||
rust-version.workspace = true
|
rust-version = "1.60"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "actix_web_httpauth"
|
name = "actix_web_httpauth"
|
||||||
|
Loading…
Reference in New Issue
Block a user