feat: Add .env file to gitignore and update dependencies

The commit adds the `.env` file to the `.gitignore` and updates the dependencies in the `Cargo.toml` and `Cargo.lock` files. This change ensures that sensitive environment variables are not committed to the repository and keeps the dependencies up to date.
This commit is contained in:
aprilthepink 2024-06-17 19:52:51 +02:00
parent 1174f92915
commit 15bba70d2a
12 changed files with 58 additions and 11 deletions

7
migration/Cargo.lock generated
View file

@ -583,6 +583,12 @@ dependencies = [
"subtle",
]
[[package]]
name = "dotenv"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
[[package]]
name = "dotenvy"
version = "0.15.7"
@ -1129,6 +1135,7 @@ version = "0.1.0"
dependencies = [
"async-std",
"chrono",
"dotenv",
"sea-orm-migration",
]

View file

@ -11,6 +11,7 @@ path = "src/lib.rs"
[dependencies]
async-std = { version = "1", features = ["attributes", "tokio1"] }
chrono = "0.4.38"
dotenv = "0.15.0"
[dependencies.sea-orm-migration]
version = "0.12.0"

View file

@ -1,6 +1,8 @@
use sea_orm_migration::prelude::*;
use dotenv::dotenv;
#[async_std::main]
async fn main() {
dotenv().ok();
cli::run_cli(migration::Migrator).await;
}