mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 17:57:47 +03:00
Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.44.1 to 1.44.2. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.44.1...tokio-1.44.2) --- updated-dependencies: - dependency-name: tokio dependency-version: 1.44.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
50 lines
1.4 KiB
TOML
50 lines
1.4 KiB
TOML
[workspace]
|
|
members = ["actix-macros", "actix-test"]
|
|
|
|
[package]
|
|
name = "schedule-parser-rusted"
|
|
version = "0.8.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
actix-web = "4.10.2"
|
|
actix-macros = { path = "actix-macros" }
|
|
bcrypt = "0.17.0"
|
|
calamine = "0.26.1"
|
|
chrono = { version = "0.4.40", features = ["serde"] }
|
|
derive_more = "2.0.1"
|
|
diesel = { version = "2.2.8", features = ["postgres"] }
|
|
diesel-derive-enum = { git = "https://github.com/Havunen/diesel-derive-enum.git", features = ["postgres"] }
|
|
dotenvy = "0.15.7"
|
|
env_logger = "0.11.7"
|
|
firebase-messaging-rs = { git = "https://github.com/i10416/firebase-messaging-rs.git" }
|
|
futures-util = "0.3.31"
|
|
fuzzy-matcher = "0.3.7"
|
|
jsonwebtoken = { version = "9.3.1", features = ["use_pem"] }
|
|
hex = "0.4.3"
|
|
mime = "0.3.17"
|
|
objectid = "0.2.0"
|
|
regex = "1.11.1"
|
|
reqwest = { version = "0.12.15", features = ["json"] }
|
|
sentry = "0.37.0"
|
|
sentry-actix = "0.37.0"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
serde_with = "3.12.0"
|
|
serde_repr = "0.1.20"
|
|
sha1 = "0.11.0-pre.5"
|
|
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
|
|
rand = "0.9.0"
|
|
utoipa = { version = "5", features = ["actix_extras", "chrono"] }
|
|
utoipa-rapidoc = { version = "6.0.0", features = ["actix-web"] }
|
|
utoipa-actix-web = "0.1"
|
|
uuid = { version = "1.16.0", features = ["v4"] }
|
|
|
|
[dev-dependencies]
|
|
actix-test = { path = "actix-test" }
|
|
criterion = "0.5.1"
|
|
|
|
[[bench]]
|
|
name = "parse"
|
|
harness = false |