根据IDL文件生成RUST文件
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

123456789101112131415
  1. [package]
  2. name = "rustdds-gen"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "IDL到Rust代码转换工具,用于RustDDS项目的代码生成器"
  6. [dependencies]
  7. pest = "2.8"
  8. pest_derive = "2.8"
  9. clap = { version = "4.4", features = ["derive"] }
  10. serde = { version = "1.0", features = ["derive"] }
  11. serde_json = "1.0"
  12. anyhow = "1.0"
  13. thiserror = "2.0.12"
  14. regex = "1.11.1"