-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCargo.toml
46 lines (36 loc) · 1.1 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
[package]
name = "radarflow"
version = "0.2.5"
authors = ["Janek S <[email protected]"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# memory
memflow = "0.2.3"
memflow-native = { git = "https://github.com/memflow/memflow-native" }
dataview = "1.0.1"
# logging
log = "0.4.22"
simple_logger = "5.0.0"
# error handling
anyhow = "1.0.93"
# derive stuff
enum-primitive-derive = "0.3.0"
num-traits = "0.2.19"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
clap = { version = "4.5.21", features = ["derive", "string"] }
# tokio
tokio = { version = "1.37.0", features = ["full"] }
# networking
axum = { version = "0.7.9", features = ["ws"] }
tower-http = { version = "0.6.2", features = ["fs"] }
tower = "0.5.1"
local-ip-address = "0.6.3"
# other
itertools = "0.13.0"
[build-dependencies]
reqwest = { version = "0.12.9", features = ["blocking"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
vergen-gitcl = { version = "1.0.0", features = ["build", "cargo", "rustc",] }