28 lines
619 B
TOML
28 lines
619 B
TOML
[package]
|
|
name = "flomo-ai-desktop"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "flomo-ai"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
egui = "0.30"
|
|
eframe = { version = "0.30", default-features = false, features = ["default_fonts", "glow"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "native-tls"] }
|
|
dirs = "5"
|
|
arboard = "3"
|
|
|
|
[profile.release]
|
|
opt-level = "z"
|
|
lto = true
|
|
codegen-units = 1
|
|
panic = "abort"
|
|
strip = true
|
|
|
|
[target.x86_64-pc-windows-gnu]
|
|
rustflags = ["-C", "link-args=-Wl,--subsystem,windows"]
|