4cc737731a
!Breaking change! - The updated version will not be able to read your old database file Major improvements: - Added editable pastas - Added private pastas - Added line numbers - Added support for wide mode (1080p instead of 720p) - Added syntax highlighting support - Added read-only mode - Added built-in help page - Added option to remove logo, change title and footer text Minor improvements: - Improved looks in pure html mode - Removed link to GitHub repo from navbar - Broke up 7km long main.rs file into smaller modules - Moved water.css into a template instead of serving it as an external resource - Made Save button a bit bigger - Updated README.MD Bugfixes: - Fixed a bug where an incorrect animal ID in a request would cause a crash - Fixed a bug where an empty or corrupt JSON database would cause a crash
25 lines
519 B
TOML
25 lines
519 B
TOML
[package]
|
|
name="microbin"
|
|
version="1.0.0"
|
|
edition="2021"
|
|
|
|
[dependencies]
|
|
actix-web="4"
|
|
actix-files="0.6.0"
|
|
serde={ version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.80"
|
|
askama="0.10"
|
|
askama-filters={ version = "0.1.3", features = ["chrono"] }
|
|
chrono="0.4.19"
|
|
rand="0.8.5"
|
|
linkify="0.8.1"
|
|
clap={ version = "3.1.12", features = ["derive"] }
|
|
actix-multipart = "0.4.0"
|
|
futures = "0.3"
|
|
sanitize-filename = "0.3.0"
|
|
log = "0.4"
|
|
env_logger = "0.9.0"
|
|
actix-web-httpauth = "0.6.0"
|
|
lazy_static = "1.4.0"
|
|
syntect = "5.0"
|
|
|