-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (47 loc) · 1.7 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
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "emergence"
version = "0.0.1"
edition = "2021"
description = "Takes notes"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4.26", features = ["serde"] }
clap = { version = "4.3.11", features = ["derive"] }
const_format = "0.2.31"
rusqlite = { version = "0.29.0", features = ["bundled", "chrono", "functions", "uuid"] }
smallvec = "1.11.0"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
uuid = { version = "1.4.0", features = ["v4", "serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
markdown = "1.0.0-alpha"
tokio = { version = "1.29.1", features = ["sync"] }
lipsum = "0.9.0"
rand = "0.8.5"
itertools = "0.11.0"
tantivy = "0.20.2"
sir = { version = "0.4.0", features = ["dioxus"] }
ahash = "0.8.3"
dioxus = { git = "https://github.com/DioxusLabs/dioxus", rev = "c8127e164b7f2a64f288dc97271cf5a5ed11da3e" }
dioxus-desktop = { git = "https://github.com/DioxusLabs/dioxus", rev = "c8127e164b7f2a64f288dc97271cf5a5ed11da3e" }
dioxus-signals = { git = "https://github.com/DioxusLabs/dioxus", rev = "c8127e164b7f2a64f288dc97271cf5a5ed11da3e" }
[patch.crates-io]
dioxus = { git = "https://github.com/DioxusLabs/dioxus", rev = "c8127e164b7f2a64f288dc97271cf5a5ed11da3e" }
dioxus-desktop = { git = "https://github.com/DioxusLabs/dioxus", rev = "c8127e164b7f2a64f288dc97271cf5a5ed11da3e" }
[dev-dependencies]
criterion = "0.4"
tempfile = "3.6.0"
[[bench]]
name = "note_search"
harness = false
[package.metadata.bundle]
name = "Emergence"
identifier = "com.emergence.notes"
version = "0.0.1"
copyright = ""
category = "Developer Tool"
short_description = "Takes notes"
long_description = """
Takes notes
"""