-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
45 lines (41 loc) · 1.22 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
[[bin]]
name = "Maintain"
path = "Source/Library.rs"
[build-dependencies]
serde = { version = "1.0.217", features = ["derive"] }
toml = { version = "0.8.19" }
[dependencies]
clap = { version = "4.5.27", features = ["cargo", "derive"] }
dashmap = { version = "6.1.0" }
dotenv = { version = "0.15" }
futures = { version = "0.3.31" }
git2 = { version = "0.20.0" }
itertools = { version = "0.14.0" }
num_cpus = { version = "1.16.0" }
octocrab = { version = "0.43.0" }
proc_use = { version = "0.2.1" }
rayon = { version = "1.10.0" }
regex = { version = "1.11.1" }
rusqlite = { version = "0.33.0", features = ["bundled"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.138" }
tokio = { version = "1.43", features = ["full"] }
toml = { version = "0.8.19" }
unbug = { version = "0.4.0" }
walkdir = { version = "2.5.0" }
[lib]
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
default-run = "Maintain"
documentation = "https://Documentation.Maintain.Editor.Land"
edition = "2021"
homepage = "https://Maintain.Editor.Land"
license-file = "LICENSE"
name = "Maintain"
publish = false
repository = "https://github.com/CodeEditorLand/Maintain"
version = "0.0.1"