Update Cargo.toml

This commit is contained in:
Shunsuke Shibayama 2022-12-25 19:35:20 +09:00
parent f3281b2a2e
commit 6d6eebf1e2
3 changed files with 52 additions and 23 deletions

View file

@ -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"