mirror of
https://github.com/danbulant/Portfolio
synced 2026-07-05 19:11:06 +00:00
chore: add once_cell dependency
This commit is contained in:
parent
a6f3fbd5c9
commit
0a400e0b38
2 changed files with 5 additions and 3 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
|
@ -2060,6 +2060,7 @@ dependencies = [
|
||||||
"dotenv",
|
"dotenv",
|
||||||
"futures",
|
"futures",
|
||||||
"infer",
|
"infer",
|
||||||
|
"once_cell",
|
||||||
"portfolio-entity",
|
"portfolio-entity",
|
||||||
"rand 0.8.5",
|
"rand 0.8.5",
|
||||||
"sea-orm",
|
"sea-orm",
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ portfolio-entity = { path = "../entity" }
|
||||||
serde = { version = "^1.0", features = ["derive"] }
|
serde = { version = "^1.0", features = ["derive"] }
|
||||||
|
|
||||||
# csv
|
# csv
|
||||||
csv = "^1.1"
|
csv = "1.1"
|
||||||
|
|
||||||
# error
|
# error
|
||||||
|
|
||||||
|
|
@ -23,7 +23,7 @@ thiserror = "^1.0"
|
||||||
dotenv = "^0.15"
|
dotenv = "^0.15"
|
||||||
|
|
||||||
# async
|
# async
|
||||||
tokio = "^1.22"
|
tokio = "^1.21"
|
||||||
futures = "^0.3"
|
futures = "^0.3"
|
||||||
async-compat = "^0.2"
|
async-compat = "^0.2"
|
||||||
|
|
||||||
|
|
@ -49,6 +49,7 @@ features = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = { version = "^1.22", features = ["macros"] }
|
tokio = { version = "^1.21", features = ["macros"] }
|
||||||
async-tempfile = "^0.2"
|
async-tempfile = "^0.2"
|
||||||
serial_test = "0.9.0"
|
serial_test = "0.9.0"
|
||||||
|
once_cell = "1.9.0"
|
||||||
Loading…
Reference in a new issue