26 lines
551 B
TOML
26 lines
551 B
TOML
|
|
[package]
|
||
|
|
name = "flomo-ai-desktop"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "flomo-ai"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
egui = "0.29"
|
||
|
|
eframe = { version = "0.29", default-features = false, features = ["default_fonts", "glow"] }
|
||
|
|
serde = { version = "1", features = ["derive"] }
|
||
|
|
serde_json = "1"
|
||
|
|
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
|
||
|
|
dirs = "5"
|
||
|
|
clipboard-win = "5"
|
||
|
|
arboard = "3"
|
||
|
|
|
||
|
|
[profile.release]
|
||
|
|
opt-level = "z"
|
||
|
|
lto = true
|
||
|
|
codegen-units = 1
|
||
|
|
panic = "abort"
|
||
|
|
strip = true
|