mirror of
https://github.com/actix/examples
synced 2024-11-23 14:31:07 +01:00
chore: remove fluent crate override
This commit is contained in:
parent
818d8b1384
commit
0319f18995
10
Cargo.lock
generated
10
Cargo.lock
generated
@ -2566,8 +2566,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "fluent-template-macros"
|
||||
version = "0.7.1"
|
||||
source = "git+https://github.com/XAMPPRocky/fluent-templates.git?rev=82b50baf6232e1ce2e9629ce2a8fcc12ab5d942c#82b50baf6232e1ce2e9629ce2a8fcc12ab5d942c"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "dec7592cd1f45c1afe9084ce59c62a3a7c266c125c4c2ec97e95b0563c4aa914"
|
||||
dependencies = [
|
||||
"flume",
|
||||
"ignore",
|
||||
@ -2580,8 +2581,9 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "fluent-templates"
|
||||
version = "0.7.1"
|
||||
source = "git+https://github.com/XAMPPRocky/fluent-templates.git?rev=82b50baf6232e1ce2e9629ce2a8fcc12ab5d942c#82b50baf6232e1ce2e9629ce2a8fcc12ab5d942c"
|
||||
version = "0.8.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "7c3ef2c2152757885365abce32ddf682746062f1b6b3c0824a29fbed6ee4d080"
|
||||
dependencies = [
|
||||
"arc-swap",
|
||||
"fluent",
|
||||
|
@ -64,8 +64,3 @@ exclude = [
|
||||
# uses incompatible libsqlite-sys to other examples
|
||||
"databases/diesel",
|
||||
]
|
||||
|
||||
[patch.crates-io]
|
||||
# FIXME: Specify commit until https://github.com/XAMPPRocky/fluent-templates/pull/36 is released
|
||||
fluent-templates = { git = "https://github.com/XAMPPRocky/fluent-templates.git", rev = "82b50baf6232e1ce2e9629ce2a8fcc12ab5d942c" }
|
||||
fluent-template-macros = { git = "https://github.com/XAMPPRocky/fluent-templates.git", rev = "82b50baf6232e1ce2e9629ce2a8fcc12ab5d942c" }
|
||||
|
@ -50,9 +50,7 @@ impl Client {
|
||||
.content_length()
|
||||
.try_into()
|
||||
.expect("file has invalid size"),
|
||||
object
|
||||
.body
|
||||
.map_err(|err| error::ErrorInternalServerError(err)),
|
||||
object.body.map_err(error::ErrorInternalServerError),
|
||||
))
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,7 @@ async fn hello() -> &'static str {
|
||||
|
||||
#[post("/stop/{graceful}")]
|
||||
async fn stop(Path(graceful): Path<bool>, stop_handle: web::Data<StopHandle>) -> HttpResponse {
|
||||
let _ = stop_handle.stop(graceful);
|
||||
stop_handle.stop(graceful);
|
||||
HttpResponse::NoContent().finish()
|
||||
}
|
||||
|
||||
|
@ -6,7 +6,7 @@ edition = "2021"
|
||||
[dependencies]
|
||||
actix-web = "4"
|
||||
actix-web-lab = "0.17"
|
||||
fluent-templates = { version = "0.7", features = ["handlebars"] }
|
||||
fluent-templates = { version = "0.8", features = ["handlebars"] }
|
||||
handlebars = { version = "4.3", features = ["dir_source"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
|
Loading…
Reference in New Issue
Block a user