-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
103 lines (94 loc) · 2.57 KB
/
Cargo.toml
File metadata and controls
103 lines (94 loc) · 2.57 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[package]
description = "an in-memory database in Rust for rows queried using bit (flag) columns"
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
name = "venndb"
readme = "README.md"
repository = { workspace = true }
keywords = ["database", "db", "memory", "bits"]
categories = ["database"]
authors = ["Glen De Cauwsemaecker <glen@plabayo.tech>"]
version = { workspace = true }
rust-version = { workspace = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace]
members = [".", "fuzz", "venndb-macros", "venndb-usage"]
[workspace.dependencies]
divan = "0.1.21"
hashbrown = "0.16.0"
itertools = "0.14.0"
proc-macro2 = "1.0"
quote = "1.0"
rand = "0.9.2"
sqlite = "0.37.0"
syn = "2.0"
trybuild = "1"
venndb = { version = "0.6.1", path = "." }
venndb-macros = { version = "0.6.1", path = "venndb-macros" }
[workspace.package]
edition = "2024"
homepage = "https://venndb.plabayo.tech"
repository = "https://github.com/plabayo/venndb"
rust-version = "1.88.0"
version = "0.6.1"
authors = ["Glen De Cauwsemaecker <glen@plabayo.tech>"]
license = "MIT OR Apache-2.0"
[workspace.lints.rust]
unreachable_pub = "deny"
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fuzzing)'] }
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
todo = "warn"
empty_enum = "warn"
enum_glob_use = "warn"
equatable_if_let = "warn"
mem_forget = "warn"
unused_self = "warn"
filter_map_next = "warn"
needless_continue = "warn"
needless_borrow = "warn"
match_wildcard_for_single_variants = "warn"
if_let_mutex = "warn"
implicit_clone = "warn"
await_holding_lock = "warn"
imprecise_flops = "warn"
suboptimal_flops = "warn"
lossy_float_literal = "warn"
rest_pat_in_fully_bound_structs = "warn"
fn_params_excessive_bools = "warn"
exit = "warn"
inefficient_to_string = "warn"
linkedlist = "warn"
macro_use_imports = "warn"
manual_let_else = "warn"
match_same_arms = "warn"
must_use_candidate = "warn"
needless_pass_by_ref_mut = "warn"
needless_pass_by_value = "warn"
option_option = "warn"
redundant_clone = "warn"
ref_option = "warn"
verbose_file_reads = "warn"
unnested_or_patterns = "warn"
str_to_string = "warn"
type_complexity = "allow"
return_self_not_must_use = "warn"
single_match_else = "warn"
trivially_copy_pass_by_ref = "warn"
use_self = "warn"
[dependencies]
hashbrown = { workspace = true }
rand = { workspace = true }
venndb-macros = { workspace = true }
[dev-dependencies]
divan = { workspace = true }
itertools = { workspace = true }
sqlite = { workspace = true }
[lints]
workspace = true
[[bench]]
name = "proxydb"
harness = false