-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (30 loc) · 775 Bytes
/
Cargo.toml
File metadata and controls
38 lines (30 loc) · 775 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
31
32
33
34
35
36
37
38
# SPDX-FileCopyrightText: 2022 Severen Redwood <me@severen.dev>
# SPDX-License-Identifier: CC0-1.0
[package]
name = "luna"
version = "0.1.0"
authors = ["Severen Redwood <me@severen.dev>"]
description = "An interpreter for the Scheme programming language."
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/severen/luna.git"
edition = "2021"
[lib]
name = "luna"
path = "src/lib.rs"
[[bin]]
name = "luna"
path = "src/main.rs"
[profile.release]
lto = true
[dependencies]
anyhow = "1.0.70"
thiserror = "1.0.40"
clap = { version = "4.2.1", features = ["derive", "unicode", "wrap_help"] }
rustyline = "11.0.0"
directories-next = "2.0.0"
logos = "0.12.1"
[dependencies.derive_more]
version = "0.99.17"
default-features = false
features = ["display"]