-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (45 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
52 lines (45 loc) · 1.01 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
[package]
name = "gmsv_mongo"
version = "2.1.1"
edition = "2021"
authors = ["feeeedox"]
description = "MongoDB driver for Garry's Mod with advanced features"
license = "MIT"
repository = "https://github.com/feeeedox/gmsv_mongo"
[lib]
crate-type = ["cdylib"]
[profile.dev]
opt-level = 1
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[features]
default = ["full"]
full = ["transactions", "gridfs", "change-streams"]
transactions = []
gridfs = []
change-streams = []
[dependencies]
rglua = { version = "2.1.0" }
futures = "0.3.30"
tokio = { version = "1.40.0", features = ["full"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
thiserror = "2.0.0"
chrono = "0.4.38"
log = "0.4.22"
env_logger = "0.11.5"
once_cell = "1.20.2"
hex = "0.4.3"
lazy_static = "1.4.0"
ureq = { version = "2.5.0", features = ["json"] }
dotenv = "0.15.0"
termcolor = "1.4.1"
[dependencies.mongodb]
version = "3.1.0"
features = ["rustls-tls"]
[dev-dependencies]
criterion = "0.8.0"
mockall = "0.14.0"