-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (38 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "qlog"
version = "0.1.0"
edition = "2021"
[dependencies]
# logging
log = "0.4"
env_logger = "0.11"
# gui and async runtime
egui = "0.27"
egui_extras = "0.27"
egui_dock = { version = "0.12", features = ["serde"] }
eframe = { version = "0.27", features = ["persistence"] }
tokio = { version = "1.37", features = ["rt-multi-thread", "macros", "time", "sync"] }
poll-promise = { version = "0.3", features = ["tokio"] }
# data
surrealdb = { version = "1.5.1", features = ["kv-rocksdb"] }
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
geo = "0.28"
image = { version = "0.25", default-features = false, features = ["png"] }
imageproc = { version = "0.25", default-features = false }
arrayvec = {version = "0.7", features = ["serde"] }
# qol
strum = "0.26"
strum_macros = "0.26"
lazy_static = "1.4"
anyhow = "1.0"
thiserror = "1.0"
# web requests and serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde-xml-rs = "0.6"
reqwest = { version = "0.12", features = ["json"] }
# profiling
tracy-client = { version = "0.17", features = ["ondemand", "delayed-init"] }
# memory allocator
mimalloc = "*"