Cargo.toml 354 B

12345678910111213141516
  1. [package]
  2. name = "aya-log"
  3. version = "0.1.0"
  4. edition = "2018"
  5. publish = false
  6. [dependencies]
  7. aya = { git = "https://github.com/aya-rs/aya", branch="main", features=["async_tokio"] }
  8. aya-log-common = { path = "../aya-log-common", features=["userspace"] }
  9. thiserror = "1"
  10. log = "0.4"
  11. bytes = "1.1"
  12. tokio = { version = "1.2.0" }
  13. [lib]
  14. path = "src/lib.rs"