mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-24 17:11:49 +00:00
chore: add serde_json (for easier testing)
remove mock test
This commit is contained in:
parent
162eed786d
commit
0c84d67952
1 changed files with 2 additions and 4 deletions
|
|
@ -5,6 +5,7 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0", features = ["derive"] }
|
serde = { version = "1.0", features = ["derive"] }
|
||||||
|
serde_json = "1.0"
|
||||||
portfolio-entity = { path = "../entity" }
|
portfolio-entity = { path = "../entity" }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
argon2 = "0.4.1"
|
argon2 = "0.4.1"
|
||||||
|
|
@ -21,7 +22,4 @@ features = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tokio = "1.21.2"
|
tokio = "1.21.2"
|
||||||
|
|
||||||
[features]
|
|
||||||
mock = ["sea-orm/mock"]
|
|
||||||
Loading…
Reference in a new issue