Initial commit

main
kirbylife 2023-08-07 00:25:07 -06:00
commit 9f08d33121
3 changed files with 21 additions and 0 deletions

5
.gitignore vendored 100644
View File

@ -0,0 +1,5 @@
/target
Cargo.lock
.env

13
Cargo.toml 100644
View File

@ -0,0 +1,13 @@
[package]
name = "juunil"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.26", features = ["serde"] }
diesel = { version = "2.1.0", features = ["sqlite", "chrono", "serde_json"] }
dotenv = "0.15.0"
serde = "1.0.164"
serde_json = "1.0.99"

3
src/main.rs 100644
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}