-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (32 loc) · 1.16 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
[workspace]
members = ["costs-derive"]
[package]
name = "basis-core"
version = "0.1.0"
authors = ["Andrew Danger Lyon <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
description = "The core datastructures, algorithms, and logic for the Basis system"
homepage = "https://basisproject.gitlab.io/public/"
repository = "https://gitlab.com/basisproject/core"
readme = "README.md"
keywords = ["economics", "socialism", "communism", "democracy"]
categories = ["algorithms", "data-structures"]
[features]
with_serde = ["serde", "serde_derive", "vf-rs/with_serde"]
[dependencies]
chrono = { version = "0.4", features = ["serde"] }
costs-derive = { path = "./costs-derive" }
derive_builder = "0.9"
getset = "0.1"
om2 = "0.1.9"
rust_decimal = { version = "1.6", features = ["serde-float"] }
rust_decimal_macros = "1.6"
serde = { version = "1.0", optional = true }
serde_derive = { version = "1.0", optional = true }
thiserror = "1.0"
url = { version = "2.1", features = ["serde"] }
vf-rs = { version = "0.3.16", default-features = false, features = ["getset_getmut", "getset_setters"] }
[dev-dependencies]
serde_json = "1.0"
uuid = { version = "0.8", features = ["v4"] }