diff options
| author | Fuwn <[email protected]> | 2022-07-16 10:47:07 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-07-16 10:47:07 +0000 |
| commit | f63f2b749aa0ff4efdc367b514aba08c23dd7c89 (patch) | |
| tree | e7d692aeff08cabc8d6d321aa05c4f0c25d7ca45 /Cargo.toml | |
| download | sydney-f63f2b749aa0ff4efdc367b514aba08c23dd7c89.tar.xz sydney-f63f2b749aa0ff4efdc367b514aba08c23dd7c89.zip | |
feat: initial release
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..24451e3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[package] +name = "syndey" +version = "0.1.0" +authors = ["Fuwn <[email protected]>"] +edition = "2021" +description = "Vim-like, Command-line Gemini Client" +readme = "README.md" +homepage = "https://github.com/gemrest/sydney" +repository = "https://github.com/gemrest/sydney" +license = "GPL-3.0-only" +keywords = ["gemini", "client"] + +[dependencies] +germ = { version = "0.3.3", default-features = false, features = ["request", "ast"] } # Gemini +url = "2.2.2" # URL +tui = "0.18.0" # Terminal User Interface +crossterm = "0.24.0" # Cross-platform Terminal |