-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·77 lines (71 loc) · 1.84 KB
/
Cargo.toml
File metadata and controls
executable file
·77 lines (71 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[[bin]]
name = "Rest"
path = "Source/Library.rs"
[build-dependencies]
serde = { workspace = true, features = ["derive"] }
toml = { workspace = true }
[dependencies]
anyhow = { workspace = true }
tempfile = { workspace = true }
walkdir = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true, features = ["derive"] }
dashmap = { workspace = true }
futures = { workspace = true }
git2 = { workspace = true }
globset = { workspace = true }
itertools = { workspace = true }
notify = { workspace = true }
num_cpus = { workspace = true }
par-core = { workspace = true, features = ["rayon"] }
rayon = { version = "1.11.0" }
regex = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
oxc_allocator = { workspace = true }
oxc_parser = { workspace = true }
oxc_transformer = { workspace = true }
oxc_minifier = { workspace = true }
oxc_codegen = { workspace = true }
oxc_semantic = { workspace = true }
oxc_span = { workspace = true }
oxc_ast = { workspace = true }
tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
unbug = { workspace = true }
[features]
default = []
[lib]
crate-type = ["staticlib", "cdylib", "rlib"]
name = "Library"
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = true
default-run = "Rest"
description = "Rest ⛱️"
edition = "2024"
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
license-file = "LICENSE"
name = "Rest"
repository = "https://github.com/CodeEditorLand/Rest.git"
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",
]