Compare commits
No commits in common. "35d9135e07ac6b9faec00067e5041e22dec26015" and "1aecdf33332179e207d306cc452ea4bca0131897" have entirely different histories.
35d9135e07
...
1aecdf3333
207 changed files with 313 additions and 528 deletions
.env.example.envrc.gitignore
.vscode
Cargo.lockCargo.tomlRocket.toml_resources
computer-fonts-original.pngcomputer-fonts.xcfg.xcftree-original.pngtree.pngtree.xcftypes-of-strokes-original.jpgtypes-of-strokes.xcf
content
_index.md
challenges
1.md10.md100.md101.md102.md103.md104.md105.md106.md107.md108.md109.md11.md110.md111.md112.md113.md114.md12.md13.md14.md15.md16.md17.md18.md19.md2.md20.md21.md22.md23.md24.md25.md26.md27.md28.md29.md3.md30.md31.md32.md33.md34.md35.md36.md37.md38.md39.md4.md40.md41.md42.md43.md44.md45.md46.md47.md48.md49.md5.md50.md51.md52.md53.md54.md55.md56.md57.md58.md59.md6.md60.md61.md62.md63.md64.md65.md66.md67.md68.md69.md7.md70.md71.md
2
.envrc
2
.envrc
|
@ -1 +1 @@
|
||||||
use flake
|
use nix
|
||||||
|
|
12
.gitignore
vendored
12
.gitignore
vendored
|
@ -1,3 +1,11 @@
|
||||||
|
# Ignore challenge submissions to prevent bloating git repo
|
||||||
|
/assets/
|
||||||
|
|
||||||
|
# Ignore challenge data files
|
||||||
|
/data/
|
||||||
|
|
||||||
|
# Added by cargo
|
||||||
/target
|
/target
|
||||||
.direnv
|
|
||||||
result
|
.env
|
||||||
|
*.db
|
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"rust-analyzer.linkedProjects": [
|
|
||||||
"./tegakituesday/Cargo.toml",
|
|
||||||
]
|
|
||||||
}
|
|
515
Cargo.lock
generated
515
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
32
Cargo.toml
32
Cargo.toml
|
@ -1,3 +1,29 @@
|
||||||
[workspace]
|
[package]
|
||||||
members = ["tegakituesday"]
|
name = "tegakituesday"
|
||||||
resolver = "2"
|
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"] }
|
||||||
|
|
Before ![]() (image error) Size: 96 KiB After ![]() (image error) Size: 96 KiB ![]() ![]() |
Before ![]() (image error) Size: 3.7 KiB After ![]() (image error) Size: 3.7 KiB ![]() ![]() |
Before ![]() (image error) Size: 26 KiB After ![]() (image error) Size: 26 KiB ![]() ![]() |
Before ![]() (image error) Size: 118 KiB After ![]() (image error) Size: 118 KiB ![]() ![]() |
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue