mirror of
https://git.alemi.dev/dashboard.git
synced 2024-11-12 19:29:18 +01:00
build: bundled is a default feature
If you have sqlite lib on your system, build with `--no-default-features`
This commit is contained in:
parent
e6df83729e
commit
d9f03244ba
1 changed files with 5 additions and 4 deletions
|
@ -8,17 +8,18 @@ name = "dashboard_bin"
|
|||
path = "src/main.rs"
|
||||
|
||||
[features]
|
||||
default = []
|
||||
default = ["bundled"]
|
||||
bundled = ["rusqlite/bundled"]
|
||||
web = ["chrono/wasmbind", "eframe/persistence"]
|
||||
|
||||
[dependencies]
|
||||
rand = "0.8"
|
||||
dirs = "4"
|
||||
git-version = "0.3.5"
|
||||
chrono = { version = "0.4", features = ["wasmbind"] }
|
||||
chrono = "0.4"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
rusqlite = { version = "0.27" }
|
||||
rusqlite = "0.27"
|
||||
jql = { version = "4", default-features = false }
|
||||
ureq = { version = "2", features = ["json"] }
|
||||
eframe = { version = "0.18", features = ["persistence"] }
|
||||
eframe = "0.18"
|
Loading…
Reference in a new issue