Cargo.toml 891 B

1234567891011121314151617181920212223242526272829303132333435
  1. [package]
  2. name = "sonic-channel"
  3. version = "1.1.0"
  4. authors = ["Dmitriy Pleshevskiy <dmitriy@ideascup.me>"]
  5. description = "Rust client for sonic search backend"
  6. categories = ["api-bindings"]
  7. keywords = ["sonic", "search", "client", "elasticsearch", "api"]
  8. edition = "2021"
  9. license = "MPL-2.0"
  10. repository = "https://github.com/pleshevskiy/sonic-channel"
  11. homepage = "https://github.com/pleshevskiy/sonic-channel"
  12. documentation = "https://docs.rs/sonic-channel"
  13. readme = "README.md"
  14. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  15. [dependencies]
  16. log = "0.4.17"
  17. whatlang = "0.16.2"
  18. wasmedge_wasi_socket = { path = "../wasmedge_wasi_socket/" }
  19. [features]
  20. default = ["search"]
  21. ingest = []
  22. search = []
  23. control = []
  24. [badges]
  25. maintenance = { status = "actively-developed" }
  26. # https://docs.rs/about
  27. [package.metadata.docs.rs]
  28. all-features = true