[package] name = "many-to-many" description = "Rust crate for creating many-to-many data structures with the ability to query either side, useful for applications such as pubsub. Like a fusion between `bimap` and `multimap`." version = "0.1.7" authors = ["Paul Makles "] edition = "2018" license = "MIT" readme = "README.md" repository = "https://gitlab.insrt.uk/insert/many-to-many" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = [] test = [ "serde", "serde_json" ] [dependencies] serde = { version = "1.0.116", features = ["derive"], optional = true } serde_json = { version = "1.0.59", optional = true } [package.metadata.docs.rs] all-features = true rustc-args = ["--cfg", "docsrs"] rustdoc-args = ["--cfg", "docsrs"]