-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 739 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "mamba"
version = "0.3.6"
authors = ["Joël Abrahams <abrahamsjo@gmail.com>"]
description = "A transpiler which converts Mamba files to Python 3 files"
edition = "2021"
license-file = "LICENSE"
rust-version = "1.80.0"
readme = "README.md"
repository = "https://github.com/JSAbrahams/mamba"
keywords = ["python", "transpiler", "compiler"]
categories = ["parsing"]
[dependencies]
ansi_term = "0.12.1"
assert_cmd = "0.10"
clap = { version = "4.5.40", features = ["derive"] }
glob = "0.3.0"
itertools = "0.8.2"
log = "0.4"
loggerv = "0.7"
pathdiff = "0.1.0"
permutate = "0.3.2"
python-parser = "0.1.0"
[dev-dependencies]
test-case = "3.3.1"
# dependencies: test -> test util -> mamba
tests_util = { path = "./tests_util" }