-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (23 loc) · 815 Bytes
/
Cargo.toml
File metadata and controls
25 lines (23 loc) · 815 Bytes
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
[package]
name = "sinter"
version = "0.1.1"
edition = "2021"
authors = ["ickk <crates@ickk.io>"]
license = "MIT OR Apache-2.0 OR Zlib"
readme = "README.md"
include = ["src/", "LICENSE-APACHE", "LICENSE-MIT", "LICENSE-ZLIB"]
description = "An easy to use & fast global interning pool"
documentation = "https://docs.rs/sinter"
repository = "https://github.com/ickk/sinter/"
keywords = ["interner", "string"]
[dependencies]
hashbrown = { version = "0.14", default-features = false }
parking_lot = { version = "0.12", default-features = false }
wyhash = { version = "0.5", default-features = false }
[lints]
rust.unsafe_op_in_unsafe_fn = "deny"
clippy.new_without_default = "allow"
clippy.toplevel_ref_arg = "allow"
clippy.too_many_arguments = "allow"
clippy.match_ref_pats = "allow"
clippy.needless_return = "allow"