rd-agent/Cargo.toml (34 lines of code) (raw):

# Copyright (c) Facebook, Inc. and its affiliates [package] name = "rd-agent" version = "2.1.2" authors = ["Tejun Heo <tj@kernel.org>"] edition = "2018" license = "Apache-2.0" repository = "https://github.com/facebookexperimental/resctl-demo" description = "Management agent for resctl-demo" readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] rd-util = { path = "../rd-util", version = "^2.1" } rd-hashd-intf = { path = "../rd-hashd-intf", version = "^2.1" } rd-agent-intf = { path = "../rd-agent-intf", version = "^2.1" } anyhow = "^1.0" chrono = { version = "^0.4", features = ["serde"] } crossbeam = "^0.8" enum-iterator = "^0.7" glob = "^0.3" json = "^0.12" lazy_static = "^1.4" libc = "^0.2" linux_proc = "^0.1" log = "^0.4" nix = "^0.23" procfs = "^0.12" proc-mounts = "^0.2" regex = "^1.5" scan_fmt = "^0.2" serde = { version = "^1.0", features = ["derive"] } serde_json = "^1.0" sysinfo = "^0.23" users = "^0.11"