mirror of
				https://github.com/astral-sh/ruff.git
				synced 2025-10-31 12:05:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "ruff_python_parser"
 | |
| version = "0.0.0"
 | |
| publish = false
 | |
| authors = ["Charlie Marsh <charlie.r.marsh@gmail.com>", "RustPython Team"]
 | |
| edition = { workspace = true }
 | |
| rust-version = { workspace = true }
 | |
| homepage = { workspace = true }
 | |
| documentation = { workspace = true }
 | |
| repository = { workspace = true }
 | |
| license = { workspace = true }
 | |
| build = "build.rs"
 | |
| 
 | |
| [lib]
 | |
| 
 | |
| [dependencies]
 | |
| ruff_python_ast = { path = "../ruff_python_ast" }
 | |
| ruff_text_size = { path = "../ruff_text_size" }
 | |
| 
 | |
| anyhow = { workspace = true }
 | |
| bitflags = { workspace = true }
 | |
| is-macro = { workspace = true }
 | |
| itertools = { workspace = true }
 | |
| lalrpop-util = { version = "0.20.0", default-features = false }
 | |
| unicode-ident = { workspace = true }
 | |
| unicode_names2 = { workspace = true }
 | |
| rustc-hash = { workspace = true }
 | |
| static_assertions = "1.1.0"
 | |
| 
 | |
| [dev-dependencies]
 | |
| insta = { workspace = true }
 | |
| 
 | |
| [build-dependencies]
 | |
| anyhow = { workspace = true }
 | |
| lalrpop = { version = "0.20.0", default-features = false, optional = true }
 | |
| tiny-keccak = { version = "2", features = ["sha3"] }
 | 
