-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (20 loc) · 613 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (20 loc) · 613 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
[package]
name = "antimony-lang"
version = "0.9.0"
authors = ["Garrit Franke <garrit@slashdev.space>"]
description = "The Antimony programming language"
license = "Apache-2.0"
documentation = "https://antimony-lang.github.io/antimony"
repository = "https://github.com/antimony-lang/antimony"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "sb"
path = "src/main.rs"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
rust-embed = "8.11.0"
qbe = "4.0.0"
lazy_static = "1.5.0"
[dev-dependencies]
proptest = "1.11"