|
1 | 1 | [package] |
2 | 2 | name = "markflowy" |
3 | | -version = "0.26.0" |
| 3 | +version = "0.27.0" |
4 | 4 | description = "A Markdown Editor App" |
5 | 5 | authors = ["drl990114"] |
6 | 6 | license = " AGPL-3.0" |
@@ -43,18 +43,47 @@ etcetera = "0.10.0" |
43 | 43 | font-kit = "0.14.3" |
44 | 44 | url = "2.5.2" |
45 | 45 | urlencoding = "2.1.3" |
46 | | -async-channel = { version = "2.3" } |
47 | | -async-trait = { version = "0.1.83" } |
48 | | -futures = { version = "0.3.31" } |
49 | | -futures-concurrency = { version = "7.6.2" } |
50 | | -pin-project-lite = { version = "0.2.15" } |
51 | | -thiserror = { version = "2.0.8" } |
52 | | -tokio = { version = "1.41.0", features = ["full", "parking_lot", "rt-multi-thread", "sync", "time"] } |
53 | | -tokio-stream = { version = "0.1.17" } |
54 | | -uuid = { version = "1.16.0", features = ["v4"] } |
55 | | -natural-sort-rs = { version = "0.2.1", features = ["alloc"] } |
56 | 46 | downcast-rs = "1.2" |
57 | 47 |
|
| 48 | +[dependencies.async-channel] |
| 49 | +version = "2.3" |
| 50 | + |
| 51 | +[dependencies.async-trait] |
| 52 | +version = "0.1.83" |
| 53 | + |
| 54 | +[dependencies.futures] |
| 55 | +version = "0.3.31" |
| 56 | + |
| 57 | +[dependencies.futures-concurrency] |
| 58 | +version = "7.6.2" |
| 59 | + |
| 60 | +[dependencies.pin-project-lite] |
| 61 | +version = "0.2.15" |
| 62 | + |
| 63 | +[dependencies.thiserror] |
| 64 | +version = "2.0.8" |
| 65 | + |
| 66 | +[dependencies.tokio] |
| 67 | +version = "1.41.0" |
| 68 | +features = [ |
| 69 | + "full", |
| 70 | + "parking_lot", |
| 71 | + "rt-multi-thread", |
| 72 | + "sync", |
| 73 | + "time", |
| 74 | +] |
| 75 | + |
| 76 | +[dependencies.tokio-stream] |
| 77 | +version = "0.1.17" |
| 78 | + |
| 79 | +[dependencies.uuid] |
| 80 | +version = "1.16.0" |
| 81 | +features = ["v4"] |
| 82 | + |
| 83 | +[dependencies.natural-sort-rs] |
| 84 | +version = "0.2.1" |
| 85 | +features = ["alloc"] |
| 86 | + |
58 | 87 | [dependencies.tauri-plugin-notification] |
59 | 88 | version = "2.2.2" |
60 | 89 | features = ["windows7-compat"] |
@@ -86,14 +115,41 @@ objc = "0.2.7" |
86 | 115 | [features] |
87 | 116 | custom-protocol = ["tauri/custom-protocol"] |
88 | 117 |
|
89 | | -[dev-dependencies] |
90 | | -lending-stream = { version = "1.0" } |
91 | | -rand = { version = "0.9.0" } |
92 | | -rmp-serde = { version = "1.3" } |
93 | | -serde = { version = "1.0.130", features = ["derive"] } |
94 | | -tempfile = { version = "3.3.0" } |
95 | | -thiserror = { version = "2.0.8" } |
96 | | -tokio = { version = "1.41.0", features = ["fs", "macros", "test-util"] } |
97 | | -tracing-subscriber = { version = "0.3.19", features = ["env-filter"] } |
98 | | -tracing-test = { version = "0.2.5", features = ["no-env-filter"] } |
99 | | -uuid = { version = "1.16.0", features = ["serde"] } |
| 118 | +[dev-dependencies.lending-stream] |
| 119 | +version = "1.0" |
| 120 | + |
| 121 | +[dev-dependencies.rand] |
| 122 | +version = "0.9.0" |
| 123 | + |
| 124 | +[dev-dependencies.rmp-serde] |
| 125 | +version = "1.3" |
| 126 | + |
| 127 | +[dev-dependencies.serde] |
| 128 | +version = "1.0.130" |
| 129 | +features = ["derive"] |
| 130 | + |
| 131 | +[dev-dependencies.tempfile] |
| 132 | +version = "3.3.0" |
| 133 | + |
| 134 | +[dev-dependencies.thiserror] |
| 135 | +version = "2.0.8" |
| 136 | + |
| 137 | +[dev-dependencies.tokio] |
| 138 | +version = "1.41.0" |
| 139 | +features = [ |
| 140 | + "fs", |
| 141 | + "macros", |
| 142 | + "test-util", |
| 143 | +] |
| 144 | + |
| 145 | +[dev-dependencies.tracing-subscriber] |
| 146 | +version = "0.3.19" |
| 147 | +features = ["env-filter"] |
| 148 | + |
| 149 | +[dev-dependencies.tracing-test] |
| 150 | +version = "0.2.5" |
| 151 | +features = ["no-env-filter"] |
| 152 | + |
| 153 | +[dev-dependencies.uuid] |
| 154 | +version = "1.16.0" |
| 155 | +features = ["serde"] |
0 commit comments