- Implemented tests for creating, retrieving, updating, and deleting hackathons. - Added validation tests for hackathon creation and updates. - Included tests for hackathon events and timelines, ensuring proper handling of edge cases. - Created tests for hackathon submissions, including validation and submission status updates. - Organized tests into a dedicated module for better structure and maintainability.
31 lines
763 B
TOML
31 lines
763 B
TOML
[package]
|
|
name = "imphnen-gateway"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
imphnen-iam.workspace = true
|
|
imphnen-libs.workspace = true
|
|
imphnen-utils.workspace = true
|
|
imphnen-gacha.workspace = true
|
|
imphnen-entities.workspace = true
|
|
imphnen-middleware.workspace = true
|
|
imphnen-cms.workspace = true
|
|
imphnen-dimentorin.workspace = true
|
|
imphnen-hackathon.workspace = true
|
|
axum.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
utoipa.workspace = true
|
|
lazy_static.workspace = true
|
|
regex.workspace = true
|
|
validator.workspace = true
|
|
axum-test.workspace = true
|
|
surrealdb.workspace = true
|
|
rand.workspace = true
|
|
tokio.workspace = true
|
|
chrono.workspace = true
|
|
anyhow.workspace = true
|
|
tower-http.workspace = true
|
|
utoipa-swagger-ui.workspace = true
|