Initial commit

This commit is contained in:
VC
2023-11-07 14:19:40 +01:00
commit e8c2d35e21
9 changed files with 2644 additions and 0 deletions

23
Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[package]
name = "oolatoocs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "^4"
env_logger = "^0.10"
log = "^0.4"
megalodon = "^0.11"
oauth1-request = "^0.6"
reqwest = "^0.11"
rusqlite = "^0.27"
serde = { version = "^1.0", features = ["derive"] }
tokio = { version = "^1.33", features = ["rt-multi-thread", "macros"] }
toml = "^0.8"
[profile.release]
strip = true
lto = true
codegen-units = 1