-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (49 loc) · 1.09 KB
/
Cargo.toml
File metadata and controls
59 lines (49 loc) · 1.09 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
[workspace]
resolver = "2"
members = [
"crates/*",
]
exclude = [
"target/",
]
[workspace.package]
rust-version = "1.83"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/nu-db/rustdb"
repository = "https://github.com/nu-db/rustdb"
[workspace.dependencies]
serde = "1.0.204"
bytes = "1.9.0"
tokio = { version = "1.42.0", features = ["sync"] }
[workspace.lints.rustdoc]
private_intra_doc_links = "allow"
[workspace.lints.clippy]
all = { level = "allow", priority = -2 }
correctness = { level = "warn", priority = -1 }
dbg_macro = "warn"
disallowed_methods = "warn"
print_stderr = "warn"
print_stdout = "warn"
self_named_module_files = "warn"
[package]
name = "rustdb-dev"
version = "0.1.0"
edition = "2021"
#edition.workspace = true
#license.workspace = true
rust-version = "1.83"
repository.workspace = true
# homepage = TODO
# documentation = "https://docs.rs/TODO"
description = """
Rustdb, a pedagogical database management system.
"""
[lib]
name = "rustdb"
path = "src/rustdb/lib.rs"
[dependencies]
[dev-dependencies]
[build-dependencies]
[lints]
workspace = true