diff options
| author | Fuwn <[email protected]> | 2022-03-26 00:46:03 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-26 03:12:32 +0000 |
| commit | d31d22d3f1fb81e7639838b6a928612b8abd5f74 (patch) | |
| tree | 447c5f99a973d9e69e5b3b490acad8c37e07b0c7 /Cargo.toml | |
| parent | docs(cargo): add meta (diff) | |
| download | windmark-d31d22d3f1fb81e7639838b6a928612b8abd5f74.tar.xz windmark-d31d22d3f1fb81e7639838b6a928612b8abd5f74.zip | |
feat: working proof
Forgot to commit this last night!
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -1,10 +1,30 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + [package] name = "windmark" version = "0.0.0" +authors = ["Fuwn <[email protected]>"] edition = "2021" description = "Simple and highly performant Gemini server framework" +documentation = "https://docs.rs/windmark" +readme = "README.md" +homepage = "https://github.com/gemrest/windmark" +repository = "https://github.com/gemrest/windmark" license = "GPL-3.0-only" +keywords = ["gemini"] +categories = ["web-programming"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +[features] +logger = ["pretty_env_logger", "log"] [dependencies] +# TCP +openssl = "0.10.38" +# tokio = { version = "1.17.0", features = ["full"] } +# tokio-openssl = "0.5.0" +# tokio-uds = "0.2.7" +url = "2.2.2" + +# Logging +pretty_env_logger = { version = "0.4.0", optional = true } +log = { version = "0.4.16", optional = true } |