update dependencies

This commit is contained in:
kageru 2024-09-23 19:25:55 +02:00
parent 0259aa70e7
commit f97ec8378b
Signed by: kageru
GPG Key ID: 8282A2BEA4ADA3D2
3 changed files with 207 additions and 260 deletions

462
Cargo.lock generated

File diff suppressed because it is too large Load Diff

@ -2,6 +2,7 @@
name = "aro" name = "aro"
version = "0.1.0" version = "0.1.0"
edition = "2021" edition = "2021"
rust-version = "1.80"
[dependencies] [dependencies]
serde_json = "1.0" serde_json = "1.0"
@ -10,7 +11,7 @@ nom = "7.1"
actix-web = { version = "4.5", default-features = false, features = ["macros"] } actix-web = { version = "4.5", default-features = false, features = ["macros"] }
itertools = "0.12" itertools = "0.12"
time = { version = "0.3", features = ["serde", "serde-human-readable"] } time = { version = "0.3", features = ["serde", "serde-human-readable"] }
regex = { version = "1.10", default-features = false, features = ["std"] } regex = { version = "1.10", default-features = false, features = ["std", "unicode-perl"] }
[dev-dependencies] [dev-dependencies]
test-case = "3.3" test-case = "3.3"

@ -1,4 +1,4 @@
#![feature(lazy_cell, try_blocks)] #![feature(try_blocks)]
use actix_web::{http::header, route, web, App, Either, HttpResponse, HttpServer}; use actix_web::{http::header, route, web, App, Either, HttpResponse, HttpServer};
use data::{Card, CardInfo, Set}; use data::{Card, CardInfo, Set};
use filter::SearchCard; use filter::SearchCard;