[package]
edition = "2024"
name = "rythonc"
version = "1.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line Python-to-Rust compiler for the Rython toolchain"
homepage = "https://github.com/rexlunae/rython"
documentation = "https://docs.rs/rythonc"
readme = "README.md"
keywords = [
"python",
"compiler",
"transpiler",
"cli",
]
categories = [
"command-line-utilities",
"compilers",
]
license = "Apache-2.0"
repository = "https://github.com/rexlunae/rython"
resolver = "2"
[[bin]]
name = "rythonc"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.79"
features = ["backtrace"]
[dependencies.clap]
version = "4.4"
features = [
"derive",
"cargo",
]
[dependencies.fern]
version = "0.7"
[dependencies.humantime]
version = "2.1.0"
[dependencies.log]
version = "0.4"
[dependencies.python-ast]
version = "1.1.0"
[dependencies.rust-format]
version = "0.3"
[dependencies.wild]
version = "2"