You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cargo.toml 593 B

12345678910111213141516171819
  1. [package]
  2. name = "shared-memory-server"
  3. version.workspace = true
  4. edition = "2021"
  5. documentation.workspace = true
  6. description.workspace = true
  7. license.workspace = true
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. eyre = "0.6.8"
  11. serde = { version = "1.0.152", features = ["derive"] }
  12. shared_memory_extended = "0.13.0"
  13. # TODO use upstream release once https://github.com/elast0ny/raw_sync-rs/pull/29 is merged
  14. # Current fix, use personally pushed `raw_sync_2` version.
  15. raw_sync_2 = "0.1.5"
  16. bincode = "1.3.3"
  17. tracing = "0.1.37"