[package] name = "not-notes" version = "0.1.0" authors = ["João Vitor Silveira Ribeiro "] description = """ Not is a terminal-based note-taking app. It handles your notes in a markdown format, so it's possible to sync the notes between your devices. """ documentation = "https://gitlab.com/joao-vitor-sr/not" homepage = "https://gitlab.com/joao-vitor-sr/not" repository = "https://gitlab.com/joao-vitor-sr/not" keywords = ["notes", "cli"] license = "MIT" autotests = false edition = "2021" [[bin]] bench = false path = "src/main.rs" name = "not" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] termion = "1.5.6" xdg = "2.4.1" clap = "3.2.12" [package.metadata.deb] assets = [ ["target/release/rg", "usr/bin/", "755"], ["LICENSE", "usr/share/doc/ripgrep/", "644"], ["README.md", "usr/share/doc/ripgrep/README", "644"], # ["deployment/deb/not.1", "usr/share/man/man1/not.1", "644"], # ["deployment/deb/not.bash", "usr/share/bash-completion/completions/not", "644"], # ["deployment/deb/not.fish", "usr/share/fish/vendor_completions.d/not.fish", "644"], # ["deployment/deb/_not", "usr/share/zsh/vendor-completions/", "644"], ] extended-description = """\ Not is a terminal-based note-taking app. It handles your notes in a markdown format, so it's possible to sync the notes between your devices. """