-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 732 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 732 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "scribe-papyrus"
version = "0.1.0"
edition = "2024"
authors = ["Karl Edenstål <github@karledenstal.dev>"]
description = "A CLI wrapper for the Papyrus script compiler with embedded compiler binary"
license = "MIT OR Apache-2.0"
repository = "https://github.com/karledenstal/scribe-papyrus"
homepage = "https://github.com/karledenstal/scribe-papyrus"
keywords = ["papyrus", "skyrim", "modding", "compiler", "scripting"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[[bin]]
name = "scribe"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5.59", features = ["derive"] }
serde = { version = "1.0.228", features = ["derive"] }
toml = "1.0.2"
anyhow = "1.0"
dirs = "5.0"