-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (38 loc) · 1.88 KB
/
Cargo.toml
File metadata and controls
46 lines (38 loc) · 1.88 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
[package]
name = "performance-monitor"
version = "0.1.0"
edition = "2024"
authors = ["Barak Taya"]
description = "Tool that wraps your runtime & monitor performance"
license = "AGPL-3.0"
readme = "readme.md"
rust-version = "1.87.0"
[package.metadata]
homepage = "https://barakadax.github.io/"
repository = "https://github.com/barakadax/PerformaceMonitor"
[dependencies]
serde = { version = "1.0.219", default-features = false, features = ["std", "derive", "alloc", "rc"] }
serde_json = { version = "1.0.140", default-features = false, features = ["std", "alloc"] }
tokio = { version = "1.45.1", default-features = false, features = ["rt-multi-thread", "net", "process", "macros", "io-util"] }
sysinfo = { version = "0.35.2", default-features = false, features = ["disk", "network", "system"] }
clap = { version = "4.5.40", default-features = false, features = ["std", "derive"] }
tracing = { version = "0.1.41", default-features = false, features = ["std", "attributes"] }
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["std", "env-filter", "fmt", "ansi", "json", "tracing-log", "local-time", "time"] }
json-subscriber = { version = "0.2.5", default-features = false, features = ["async-trait", "env-filter"] }
pcap = { version = "2.2.0", default-features = false, features = ["futures", "tokio", "capture-stream"] }
[target.'cfg(target_os = "macos")'.dependencies]
mach = { version = "0.3.2", default-features = true }
[target.'cfg(target_os = "windows")'.dependencies]
windows = { version = "0.61.3", default-features = true }
[dev-dependencies]
criterion = { version = "0.6.0" }
mockito = { version = "1.7.0" }
tokio = { version = "1.45.1", default-features = false, features = ["macros"] }
[target.'cfg(bin = "service")'.dependencies]
dotenvy = { version = "0.15.7", features = ["clap"] }
[[bin]]
name = "local"
path = "src/local.rs"
[[bin]]
name = "service"
path = "src/service.rs"