mirror of
https://github.com/chylex/Bark-Browser.git
synced 2025-03-17 08:15:47 +01:00
25 lines
456 B
TOML
25 lines
456 B
TOML
[package]
|
|
name = "bark"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
rust-version = "1.71"
|
|
|
|
[profile.release]
|
|
strip = true
|
|
lto = true
|
|
codegen-units = 1
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.24", features = ["std", "clock"], default-features = false }
|
|
crossterm = "0.26.1"
|
|
lazy_static = "1.4.0"
|
|
normalize-path = "0.2.1"
|
|
ratatui = "0.21.0"
|
|
slab_tree = "0.3.2"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
users = "0.11"
|
|
|
|
[patch.crates-io.slab_tree]
|
|
path = "./lib/slab-tree"
|