fix: resolve #16 by fix cs2dumper importing
Resolved #16, fixes URLs and module imports for cs2dumper. Warning: Untested.
This commit is contained in:
36
Cargo.toml
Executable file → Normal file
36
Cargo.toml
Executable file → Normal file
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "radarflow"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
authors = ["Janek S <development@superyu.xyz"]
|
||||
edition = "2021"
|
||||
|
||||
@@ -8,36 +8,38 @@ edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
# memory
|
||||
memflow = "0.2.0"
|
||||
memflow = "0.2.1"
|
||||
dataview = "1.0.1"
|
||||
|
||||
# logging
|
||||
log = "0.4.19"
|
||||
simple_logger = "4.2.0"
|
||||
log = "0.4.21"
|
||||
simple_logger = "4.3.3"
|
||||
|
||||
# error handling
|
||||
anyhow = "1.0.79"
|
||||
anyhow = "1.0.81"
|
||||
|
||||
# derive stuff
|
||||
enum-primitive-derive = "0.2.2"
|
||||
num-traits = "0.2.16"
|
||||
serde = { version = "1.0.181", features = ["derive"] }
|
||||
serde_json = "1.0.104"
|
||||
clap = { version = "4.3.19", features = ["derive", "string"] }
|
||||
enum-primitive-derive = "0.3.0"
|
||||
num-traits = "0.2.18"
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
serde_json = "1.0.115"
|
||||
clap = { version = "4.5.4", features = ["derive", "string"] }
|
||||
|
||||
# tokio
|
||||
tokio = { version = "1.29.1", features = ["full"] }
|
||||
tokio = { version = "1.37.0", features = ["full"] }
|
||||
|
||||
# networking
|
||||
axum = { version = "0.6.20", features = ["ws"] }
|
||||
tower-http = { version = "0.4.3", features = ["fs"] }
|
||||
axum = { version = "0.7.5", features = ["ws"] }
|
||||
tower-http = { version = "0.5.2", features = ["fs"] }
|
||||
tower = "0.4.13"
|
||||
local-ip-address = "0.5.4"
|
||||
local-ip-address = "0.6.1"
|
||||
|
||||
# other
|
||||
itertools = "0.12.0"
|
||||
itertools = "0.12.1"
|
||||
|
||||
|
||||
[build-dependencies]
|
||||
reqwest = { version = "0.11.18", features = ["blocking"] }
|
||||
vergen = { version = "8.0.0", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }
|
||||
reqwest = { version = "0.12.2", features = ["blocking"] }
|
||||
serde = { version = "1.0.197", features = ["derive"] }
|
||||
serde_json = "1.0.115"
|
||||
vergen = { version = "8.3.1", features = ["build", "cargo", "git", "gitcl", "rustc", "si"] }
|
||||
|
||||
Reference in New Issue
Block a user