[package] name = "shardize" version = "0.1.0" edition = "2021" authors = ["John Bell ", "Andy Balaam "] license = "MIT OR Apache-2.0" description = "proc macro that generates code to create a sharded form of an existing container" homepage = "https://gitlab.com/rust-shardize/rust-shardize" repository = "https://gitlab.com/rust-shardize/rust-shardize" categories = ["concurrency", "rust-patterns"] keywords = ["sharded", "sharding", "lock-free", "containers", "concurrent"] readme = "README.md" [lib] proc-macro = true [dependencies] shardize-core = { version = "0.1.0", path = "../shardize-core" } proc-macro2 = "^1.0.36" syn = "1.0.86" quote = "^1.0" [dev-dependencies] bencher = "^0.1.5" [[bench]] name = "mutex_hashmap" harness = false