-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·51 lines (46 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
executable file
·51 lines (46 loc) · 1.26 KB
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
[[bin]]
name = "Maintain"
path = "Source/main.rs"
[build-dependencies]
serde = { workspace = true, features = ["derive"] }
toml = { workspace = true }
[dependencies]
clap = { workspace = true }
json5 = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
toml = { workspace = true }
log = { workspace = true }
chrono = { workspace = true }
toml_edit = { workspace = true }
env_logger = { workspace = true }
colored = { workspace = true }
rhai = { workspace = true }
[lib]
path = "Source/Library.rs"
[package]
authors = ["Source 🖋️ Open 👐🏻 <Source/Open@Editor.Land>"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
default-run = "Maintain"
description = "Maintain 💪🏻"
documentation = "https://Documentation.Maintain.Editor.Land"
edition = "2024"
homepage = "https://Maintain.Editor.Land"
license-file = "LICENSE"
name = "Maintain"
publish = false
repository = "https://github.com/CodeEditorLand/Maintain"
version = "0.0.1"
[package.metadata.docs.rs]
cargo-args = ["-Zunstable-options", "-Zrustdoc-scrape-examples"]
all-features = true
default-target = "x86_64-unknown-linux-gnu"
targets = [
"x86_64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
]