12345678910111213141516171819 |
- [package]
- name = "microblog-lib"
- version = "0.1.0"
- authors = ["Dylan Baker <dylan@simulacrum.party>"]
- edition = "2018"
-
- # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
-
- [dependencies]
- async-std = { version = "1.6.0", features = ["attributes"] }
- chrono = { version = "0.4", features = ["serde", "rustc-serialize"] }
- dotenv = "0.15.0"
- pulldown-cmark = { version = "0.7", default-features = false }
- serde = "1.0.115"
- serde_json = "1.0.57"
- tera = "1.5.0"
- tide = "0.13.0"
- tide-tera = "0.1.1"
- uuid = { version = "0.4", features = ["serde", "v4"] }
|