mirror of https://github.com/OISF/suricata
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
795 B
TOML
28 lines
795 B
TOML
[package]
|
|
name = "suricatasc"
|
|
version = "@PACKAGE_VERSION@"
|
|
edition = "2021"
|
|
license = "GPL-2.0-only"
|
|
description = "Suricata socket control program"
|
|
readme = "README.md"
|
|
|
|
[[bin]]
|
|
name = "suricatasc"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5.39", default-features = false, features = ["std", "derive", "help", "usage"] }
|
|
|
|
once_cell = { version = "1.21.3" }
|
|
|
|
# Held at 14 to support Rust 1.75.0.
|
|
rustyline = { version = "14.0.0" }
|
|
rustyline-derive = { version = "~0.11.1" }
|
|
|
|
thiserror = { version = "1.0.69" }
|
|
|
|
serde = { version = "1.0.219", default-features = false, features = ["derive"] }
|
|
serde_json = { version = "1.0.140", default-features = false, features = ["preserve_order"] }
|
|
|
|
# Pinned back to support Rust 1.75.0. Not used directly by us, but by rustyline.
|
|
home = { version = "=0.5.9" }
|