first commit
This commit is contained in:
commit
928887c1a3
8 changed files with 384 additions and 0 deletions
21
Cargo.toml
Normal file
21
Cargo.toml
Normal file
|
@ -0,0 +1,21 @@
|
|||
[package]
|
||||
name = "broot"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
description = "Markdown to JSON bookmark opener."
|
||||
authors = ["Troy Lusty <hello@troylusty.com>"]
|
||||
|
||||
[dependencies]
|
||||
pulldown-cmark = "0.13.0"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 0
|
||||
|
||||
[profile.release]
|
||||
opt-level = "z"
|
||||
strip = true
|
||||
codegen-units = 1
|
||||
lto = true
|
||||
panic = "abort"
|
Loading…
Add table
Add a link
Reference in a new issue