forked from hove-io/relational_types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (24 loc) · 790 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
26
27
28
[package]
name = "relational_types"
description = "Manage relations between objects"
version = "1.1.0"
authors = ["Kisio Digital <[email protected]>", "Guillaume Pinot <[email protected]>"]
edition = "2018"
license = "MIT"
homepage = "https://github.com/CanalTP/relational_types"
repository = "https://github.com/CanalTP/relational_types"
documentation = "https://docs.rs/relational_types"
readme = "README.md"
keywords = ["relation", "collection"]
[workspace]
members = [
"relational_types_procmacro",
"relational_types_procmacro_tests",
]
[dependencies]
derivative = "1"
relational_types_procmacro = { version = "1", path = "./relational_types_procmacro/", optional = true }
thiserror = "1"
typed_index_collection = "1"
[features]
default = ["relational_types_procmacro"]