Initial commit
commit
9f08d33121
|
@ -0,0 +1,5 @@
|
|||
/target
|
||||
|
||||
Cargo.lock
|
||||
|
||||
.env
|
|
@ -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"
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Loading…
Reference in New Issue