Move entity into a separate crate (#297)

This commit is contained in:
Amanieu d'Antras
2018-04-10 19:06:49 +01:00
committed by Dan Gohman
parent 18b2f12150
commit 9e17e62d68
13 changed files with 94 additions and 37 deletions

21
lib/entity/Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
authors = ["The Cretonne Project Developers"]
name = "cretonne-entity"
version = "0.4.2"
description = "Data structures using entity references as mapping keys"
license = "Apache-2.0"
documentation = "https://cretonne.readthedocs.io/"
repository = "https://github.com/Cretonne/cretonne"
readme = "README.md"
keywords = ["entity", "set", "map"]
[lib]
name = "cton_entity"
[features]
default = ["std"]
std = []
[badges]
maintenance = { status = "experimental" }
travis-ci = { repository = "Cretonne/cretonne" }