-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
65 lines (56 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[build-dependencies]
serde = { version = "1.0.217", features = ["derive"] }
toml = { version = "0.8.19" }
[dependencies]
async-trait = "0.1.85"
config = { version = "0.15.7" }
dashmap = { version = "6.1.0" }
env_logger = { version = "0.11.6" }
futures = { version = "0.3.31" }
log = { version = "0.4.25" }
metrics = { version = "0.24.1" }
rand = { version = "0.9.0" }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = { version = "1.0.138" }
thiserror = { version = "2.0.11" }
tokio = { version = "1.43.0", features = ["full"] }
tokio-tungstenite = "0.26.1"
# Development
tokio-console = { version = "0.1.13", optional = true }
unbug = { version = "0.4.0" }
[[example]]
name = "Sequence"
path = "Example/Sequence.rs"
[[example]]
name = "WorkSteal"
path = "Example/WorkSteal.rs"
[[example]]
name = "Tauri"
path = "Example/Tauri.rs"
[lib]
crate-type = ["rlib"]
name = "Echo"
path = "Source/Library.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
description = "Echo 📣"
license-file = "LICENSE"
name = "Echo"
repository = "https://github.com/CodeEditorLand/Echo"
version = "0.0.1"
edition = "2021"
publish = false
include = [
"Source/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md",
"build.rs",
"Cargo.toml",
]
[features]
Development = ["tokio-console"]
default = []