Initial commit

This commit is contained in:
Elnath 2025-04-18 14:14:26 +02:00
commit d14122fe03
5 changed files with 22 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/target
.idea/

7
Cargo.lock generated Normal file
View File

@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "bdb"
version = "0.0.0"

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "bdb"
version = "0.0.0"
edition = "2024"
publish = false
[dependencies]

3
rust-toolchain.toml Normal file
View File

@ -0,0 +1,3 @@
[toolchain]
channel = "1.86.0"
profile = "default"

3
src/main.rs Normal file
View File

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