-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·74 lines (66 loc) · 1.57 KB
/
Cargo.toml
File metadata and controls
executable file
·74 lines (66 loc) · 1.57 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
[build-dependencies]
serde = { workspace = true }
toml = { workspace = true }
[dependencies]
#async-trait = { workspace = true }
#config = { workspace = true }
#dashmap = { workspace = true }
#env_logger = { workspace = true }
#futures = { workspace = true }
log = { workspace = true }
#metrics = { workspace = true }
rand = { workspace = true }
serde = { workspace = true }
#serde_json = { workspace = true }
#thiserror = { workspace = true }
tokio = { workspace = true }
#tokio-console = { workspace = true, optional = true }
#tokio-tungstenite = { workspace = true }
#unbug = { workspace = true }
crossbeam-deque = { workspace = true }
num_cpus = { workspace = true }
# [[example]]
# name = "Sequence"
# path = "Example/Sequence.rs"
# [[example]]
# name = "WorkSteal"
# path = "Example/WorkSteal.rs"
# [[example]]
# name = "Tauri"
# path = "Example/Tauri.rs"
[features]
#Development = ["tokio-console"]
default = []
[lib]
crate-type = ["rlib"]
name = "Echo"
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
description = "Echo 📣"
edition = "2024"
license-file = "LICENSE"
name = "Echo"
publish = false
repository = "https://github.com/CodeEditorLand/Echo"
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
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",
]