59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			TOML
		
	
	
	
| [package]
 | |
| name = "zoxide"
 | |
| version = "0.7.0"
 | |
| authors = ["Ajeet D'Souza <98ajeet@gmail.com>"]
 | |
| edition = "2018"
 | |
| description = "A smarter cd command for your terminal"
 | |
| repository = "https://github.com/ajeetdsouza/zoxide"
 | |
| license = "MIT"
 | |
| keywords = ["cli"]
 | |
| categories = ["command-line-utilities", "filesystem"]
 | |
| 
 | |
| [dependencies]
 | |
| anyhow = "1.0.32"
 | |
| askama = { version = "0.10.3", default-features = false }
 | |
| bincode = "1.3.1"
 | |
| clap = "3.0.0-beta.2"
 | |
| dirs-next = "2.0.0"
 | |
| dunce = "1.0.1"
 | |
| glob = "0.3.0"
 | |
| ordered-float = "2.0.0"
 | |
| serde = { version = "1.0.116", features = ["derive"] }
 | |
| tempfile = "3.1.0"
 | |
| 
 | |
| [target.'cfg(windows)'.dependencies]
 | |
| rand = "0.7.3"
 | |
| 
 | |
| [dev-dependencies]
 | |
| assert_cmd = "1.0.1"
 | |
| rstest = "0.10.0"
 | |
| 
 | |
| [build-dependencies]
 | |
| clap = "3.0.0-beta.2"
 | |
| clap_generate = "3.0.0-beta.2"
 | |
| 
 | |
| [features]
 | |
| default = []
 | |
| # Adds tests for code generated by `zoxide init`.
 | |
| # This requires the following external programs available in $PATH:
 | |
| # - bash
 | |
| # - black: <https://github.com/psf/black>
 | |
| # - dash
 | |
| # - elvish: <https://github.com/elves/elvish>
 | |
| # - fish: <https://github.com/fish-shell/fish-shell>
 | |
| # - mypy: <https://github.com/python/mypy>
 | |
| # - nushell: <https://github.com/nushell/nushell>
 | |
| # - powershell: <https://github.com/PowerShell/PowerShell>
 | |
| # - pylint: <https://github.com/PyCQA/pylint>
 | |
| # - shellcheck: <https://github.com/koalaman/shellcheck>
 | |
| # - shfmt: <https://github.com/mvdan/sh>
 | |
| # - xonsh: <https://github.com/xonsh/xonsh>
 | |
| # - zsh: <https://github.com/zsh-users/zsh>
 | |
| # Since most users are unlikely to have installed all of the above, these tests
 | |
| # are disabled by default.
 | |
| shell_tests = []
 | |
| 
 | |
| [profile.release]
 | |
| codegen-units = 1
 | |
| lto = true
 |