-
Notifications
You must be signed in to change notification settings - Fork 469
/
Copy pathCargo.toml
36 lines (32 loc) · 1.12 KB
/
Cargo.toml
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
[package]
name = "mz-sql-server-util"
description = "SQL Server utility library."
version = "0.1.0"
edition.workspace = true
rust-version.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
anyhow = "1.0.66"
derivative = "2.2.0"
futures = "0.3.31"
mz-ore = { path = "../ore", features = ["async"] }
mz-repr = { path = "../repr" }
mz-ssh-util = { path = "../ssh-util" }
proptest = { version = "1.6.0", default-features = false, features = ["std"] }
proptest-derive = { version = "0.5.1", features = ["boxed_union"] }
serde = { version = "1.0.218", features = ["derive"] }
smallvec = { version = "1.14.0", features = ["union"] }
static_assertions = "1.1"
thiserror = "2.0.11"
tiberius = { version = "0.12", features = ["rustls", "sql-browser-tokio", "tds73"], default-features = false }
tokio = { version = "1.44.1", features = ["net"] }
tokio-util = { version = "0.7.4", features = ["compat"] }
tracing = "0.1.37"
uuid = "1.16.0"
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
[features]
default = ["workspace-hack"]
[package.metadata.cargo-udeps.ignore]
normal = ["workspace-hack"]