Compare commits

..

No commits in common. "35d9135e07ac6b9faec00067e5041e22dec26015" and "1aecdf33332179e207d306cc452ea4bca0131897" have entirely different histories.

207 changed files with 313 additions and 528 deletions

2
.envrc
View file

@ -1 +1 @@
use flake
use nix

12
.gitignore vendored
View file

@ -1,3 +1,11 @@
# Ignore challenge submissions to prevent bloating git repo
/assets/
# Ignore challenge data files
/data/
# Added by cargo
/target
.direnv
result
.env
*.db

View file

@ -1,5 +0,0 @@
{
"rust-analyzer.linkedProjects": [
"./tegakituesday/Cargo.toml",
]
}

515
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -1,3 +1,29 @@
[workspace]
members = ["tegakituesday"]
resolver = "2"
[package]
name = "tegakituesday"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
accept-language = "2.0.0"
chrono = { version = "0.4.26", features = ["serde"] }
clap = "4.3.9"
comrak = "0.18.0"
derive_more = "0.99.17"
dotenv = "0.15.0"
gettext = "0.4.0"
gh-emoji = "1.0.7"
poise = "0.5.5"
r2d2 = "0.8.10"
r2d2_sqlite = "0.22.0"
regex = "1.8.4"
reqwest = "0.11.18"
rocket = { version = "=0.5.0-rc.3", features = ["secrets", "json"] }
rocket_contrib = { version = "0.4.11", features = ["templates"] }
rocket_dyn_templates = { version = "0.1.0-rc.3", features = ["tera"] }
rusqlite = { version = "0.29.0", features = ["chrono"] }
serde = "1.0.163"
serde_json = "1.0.96"
serde_yaml = "0.9.21"
tokio = { version = "1.29.0", features = ["macros", "rt-multi-thread"] }

View file

Before

Width:  |  Height:  |  Size: 96 KiB

After

Width:  |  Height:  |  Size: 96 KiB

View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View file

Before

Width:  |  Height:  |  Size: 118 KiB

After

Width:  |  Height:  |  Size: 118 KiB

Some files were not shown because too many files have changed in this diff Show more