Cargo.toml 955 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. [package]
  2. name = "kinbrio"
  3. version = "0.1.0"
  4. edition = "2021"
  5. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  6. [dependencies]
  7. tide = {version="*", features=["cookies"]}
  8. askama = "*"
  9. tokio = { version = "*", features = ["full"] }
  10. async-std = { version = "*", features = ["tokio1"] }
  11. async-trait = "*"
  12. sqlx = { version="*", features = [ "postgres", "runtime-tokio-native-tls", "uuid"] }
  13. serde = {version= "*"}
  14. serde_derive = "*"
  15. value-bag="*"
  16. serde_json = {version= "*"}
  17. serde-this-or-that = "*"
  18. uuid = {version="*", features = [
  19. "v4", # Lets you generate random UUIDs
  20. "fast-rng", # Use a faster (but still sufficiently random) RNG
  21. "serde",
  22. ]}
  23. dotenv="*"
  24. tide-csrf="*"
  25. jsonwebtoken="*"
  26. pwhash="*"
  27. chrono ="*"
  28. matrix-sdk="*"
  29. anyhow="*"
  30. url="*"
  31. markdown="*"
  32. tide-compress="*"
  33. strum = "*"
  34. strum_macros = "*"
  35. lazy_static="*"
  36. multer="*"
  37. reqwest="*"
  38. base64="*"
  39. minio-rsc="*"