mirror of
https://github.com/danbulant/Portfolio
synced 2026-05-19 04:18:52 +00:00
27 lines
506 B
TOML
27 lines
506 B
TOML
[package]
|
|
name = "portfolio-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
url = "^2.3"
|
|
clap = { version = "^4.1", features = ["cargo"] }
|
|
|
|
portfolio-entity = { path = "../entity" }
|
|
portfolio-core = { path = "../core" }
|
|
|
|
[dependencies.tokio]
|
|
version = "^1.26"
|
|
features = [
|
|
"process",
|
|
"macros",
|
|
]
|
|
|
|
[dependencies.sea-orm]
|
|
version = "^0.11"
|
|
features = [
|
|
"sqlx-sqlite",
|
|
# TODO: Migrate to rustls for better compatibility with various OS
|
|
"runtime-tokio-native-tls"
|
|
]
|