mirror of
https://github.com/mtshiba/pylyzer.git
synced 2025-08-03 22:08:17 +00:00
Update Cargo.toml
This commit is contained in:
parent
f3281b2a2e
commit
6d6eebf1e2
3 changed files with 52 additions and 23 deletions
|
@ -1,15 +1,21 @@
|
|||
[package]
|
||||
name = "py2erg"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "A Python -> Erg converter"
|
||||
version.workspace = true
|
||||
authors.workspace = true
|
||||
license.workspace = true
|
||||
edition.workspace = true
|
||||
repository.workspace = true
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[features]
|
||||
debug = ["erg_compiler/debug", "erg_common/debug"]
|
||||
|
||||
[dependencies]
|
||||
rustpython-parser = "0.1.2"
|
||||
erg_compiler = { git = "https://github.com/erg-lang/erg", branch = "main" }
|
||||
erg_common = { git = "https://github.com/erg-lang/erg", branch = "main" }
|
||||
rustpython-parser = { workspace = true }
|
||||
erg_common = { workspace = true }
|
||||
erg_compiler = { workspace = true }
|
||||
|
||||
[lib]
|
||||
path = "lib.rs"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue