[package] authors = ["MaidSafe Developers "] description = "Safe Network Auditor" name = "sn_auditor" version = "0.3.5" edition = "2021" homepage = "https://maidsafe.net" repository = "https://github.com/maidsafe/safe_network" license = "GPL-3.0" readme = "README.md" [features] default = [] local-discovery = [ "sn_client/local-discovery", "sn_peers_acquisition/local-discovery", ] network-contacts = ["sn_peers_acquisition/network-contacts"] open-metrics = ["sn_client/open-metrics"] websockets = ["sn_client/websockets"] svg-dag = ["graphviz-rust", "dag-collection"] dag-collection = [] [dependencies] bls = { package = "blsttc", version = "8.0.1" } clap = { version = "4.2.1", features = ["derive"] } color-eyre = "~0.6" dirs-next = "~2.0.0" futures = "0.3.28" graphviz-rust = { version = "0.9.0", optional = true } lazy_static = "1.4.0" serde = { version = "1.0.133", features = ["derive", "rc"] } serde_json = "1.0.108" sn_client = { path = "../sn_client", version = "0.110.4" } sn_logging = { path = "../sn_logging", version = "0.2.36" } sn_peers_acquisition = { path = "../sn_peers_acquisition", version = "0.5.3" } tiny_http = { version = "0.12", features = ["ssl-rustls"] } tracing = { version = "~0.1.26" } tokio = { version = "1.32.0", features = [ "io-util", "macros", "parking_lot", "rt", "sync", "time", "fs", ] } urlencoding = "2.1.3" [lints] workspace = true