-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 756 Bytes
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 756 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
26
27
[package]
name = "sqlo2"
version = "0.1.0"
authors = ["Axmouth <aggronfg@yahoo.com>"]
edition = "2021"
[features]
default = []
stdweb = [ "instant/stdweb" ]
wasm-bindgen = [ "instant/wasm-bindgen" ]
wasm = ["stdweb", "wasm-bindgen"]
[dependencies]
byteorder = "=1.4.3"
bytes = "=1.1.0"
regex = "=1.5.5"
lazy_static = "=1.4.0"
instant = { version = "=0.1.12", features = [ "now" ] }
serde = { version = "=1.0.136", features = ["derive"] }
jemallocator = {version = "=0.3.2", optional = true }
mimalloc = { version = "=0.1.27", default-features = false, optional = true }
alloc_counter = {version = "=0.0.4", optional = true }
test-util = { path = "../test-util" }
[dev-dependencies]
pretty_assertions = "=1.0.0"
test-macros = { path = "../test-macros" }