Cargo.toml 470 B

1234567891011121314151617181920
  1. [package]
  2. name = "btproto"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. proc-macro = true
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. btrun = { path = "../btrun" }
  10. proc-macro2 = "1.0.71"
  11. quote = "1.0.33"
  12. syn = { version = "2.0.42", features = ["extra-traits"] }
  13. serde = { version = "^1.0.136", features = ["derive"] }
  14. [dev-dependencies]
  15. btlib = { path = "../btlib" }
  16. once_cell = { version = "1.19.0" }