chore: add once_cell dependency

This commit is contained in:
Sebastian Pravda 2022-11-27 10:51:01 +01:00
parent a6f3fbd5c9
commit 0a400e0b38
No known key found for this signature in database
GPG key ID: F3BC84F08EFA3F57
2 changed files with 5 additions and 3 deletions

1
Cargo.lock generated
View file

@ -2060,6 +2060,7 @@ dependencies = [
"dotenv",
"futures",
"infer",
"once_cell",
"portfolio-entity",
"rand 0.8.5",
"sea-orm",

View file

@ -13,7 +13,7 @@ portfolio-entity = { path = "../entity" }
serde = { version = "^1.0", features = ["derive"] }
# csv
csv = "^1.1"
csv = "1.1"
# error
@ -23,7 +23,7 @@ thiserror = "^1.0"
dotenv = "^0.15"
# async
tokio = "^1.22"
tokio = "^1.21"
futures = "^0.3"
async-compat = "^0.2"
@ -49,6 +49,7 @@ features = [
]
[dev-dependencies]
tokio = { version = "^1.22", features = ["macros"] }
tokio = { version = "^1.21", features = ["macros"] }
async-tempfile = "^0.2"
serial_test = "0.9.0"
once_cell = "1.9.0"