-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (22 loc) · 943 Bytes
/
Cargo.toml
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
[package]
name = "nu_plugin_from_beancount"
version = "2.0.0"
license = "Unlicense"
authors = ["Jonathan Cornaz"]
repository = "https://github.com/jcornaz/nu_plugin_from_beancount"
edition = "2021"
rust-version = "1.70"
description = "A nushell extension to load a beancount file into nu structured data"
categories = ["Encoding"]
keywords = ["cli", "accounting", "beancount", "nushell", "nu"]
[badges.maintenance]
status = "experimental"
[dependencies]
beancount-parser = { version = "1.16.3", default-features = false }
beancount-parser-2 = { package = "beancount-parser", version = "2.0.0", default-features = false }
nu-plugin = { version = "0.84.0", default-features = false }
nu-protocol = { version = "0.84.0", default-features = false, features = ["plugin"] }
chrono = { version = "0.4.26", default-features = false, features = ["std"] }
[dev-dependencies]
approx = "0.5.1"
rstest = { version = "0.18.1", default-features = false }