cloud-hypervisor/rate_limiter/Cargo.toml
Bo Chen ee871278ee virtio-devices: Move the 'rate_limiter' module to its own crate
To support I/O throttling on virt-net devices, we need to use the
'rate_limiter' module from the 'net_utils' crate. Given the
'virtio-devices' crate has dependency on the 'net_utils', we will need
to move the 'rate_limiter' module out of the 'virtio-devices' crate to
avoid circular dependency issue. Considering the 'rate_limiter' is not
virtio specific and could be reused for non virtio devices, we move it
to its own crate.

Signed-off-by: Bo Chen <chen.bo@intel.com>
2021-03-30 19:47:43 +02:00

10 lines
137 B
TOML

[package]
name = "rate_limiter"
version = "0.1.0"
edition = "2018"
[dependencies]
libc = "0.2.91"
log = "0.4.14"
vmm-sys-util = "0.8.0"