My mostly failed attempt at creating a fully-Rust SKSE plugin

Cargo.toml 237B

1234567891011121314
  1. [package]
  2. name = "rust-skse-plugin"
  3. version = "0.1.0"
  4. authors = ["Tyler Hallada <tyler@hallada.net>"]
  5. edition = "2018"
  6. [dependencies]
  7. log = "0.4"
  8. simple-logging = "2.0"
  9. dirs = "3.0"
  10. [lib]
  11. name = "RustSKSEPlugin"
  12. crate-type = ["cdylib"]