mirror of
https://github.com/n08i40k/schedule-parser-rusted.git
synced 2025-12-06 17:57:47 +03:00
Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.11.7 to 0.11.8. - [Release notes](https://github.com/rust-cli/env_logger/releases) - [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/env_logger/compare/v0.11.7...v0.11.8) --- updated-dependencies: - dependency-name: env_logger dependency-version: 0.11.8 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.2 KiB
TOML
46 lines
1.2 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.8"
|
|
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 = "0.12.15"
|
|
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.1", 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"
|
|
|
|
[dev-dependencies]
|
|
actix-test = { path = "actix-test" }
|
|
criterion = "0.5.1"
|
|
|
|
[[bench]]
|
|
name = "parse"
|
|
harness = false |