added markup crate
This commit is contained in:
parent
27fe305640
commit
3f2bdfdaed
3 changed files with 24 additions and 0 deletions
22
Cargo.lock
generated
22
Cargo.lock
generated
|
@ -1266,6 +1266,27 @@ dependencies = [
|
|||
"cfg-if",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "markup"
|
||||
version = "0.13.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bd9196a235d499738d04f6a2466ce2610bf6b84730610efea8bee1b90d028b0d"
|
||||
dependencies = [
|
||||
"itoa",
|
||||
"markup-proc-macro",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "markup-proc-macro"
|
||||
version = "0.13.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "1a927f0e237dcbdd8c1a8ab03c4e1e8b1999804c448ebf06ff3b5512506c8150"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
"syn",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "memchr"
|
||||
version = "2.5.0"
|
||||
|
@ -1300,6 +1321,7 @@ dependencies = [
|
|||
"lazy_static",
|
||||
"linkify",
|
||||
"log",
|
||||
"markup",
|
||||
"mime_guess",
|
||||
"qrcode-generator",
|
||||
"rand",
|
||||
|
|
|
@ -35,6 +35,7 @@ qrcode-generator = "4.1.6"
|
|||
rust-embed = "6.4.2"
|
||||
mime_guess = "2.0.4"
|
||||
harsh = "0.2"
|
||||
markup = "0.13"
|
||||
|
||||
[profile.release]
|
||||
lto = true
|
||||
|
|
|
@ -42,6 +42,7 @@ Please do not ask for help in the issues of the original MicroBin repository, I'
|
|||
- [x] customizable `pasta`, `url` and `raw` endpoints
|
||||
- [ ] disable remove
|
||||
- [x] Click logo/name to get to root
|
||||
- [ ] switch to other template engine
|
||||
- [ ] Move frontend interactive code to rust as well
|
||||
|
||||
- [x] removed light mode
|
||||
|
|
Loading…
Reference in a new issue