-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (71 loc) · 1.95 KB
/
Cargo.toml
File metadata and controls
74 lines (71 loc) · 1.95 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
[workspace]
resolver = "2"
members = [
"butane",
"butane/tests",
"butane_cli",
"butane_codegen",
"butane_core",
"butane_test_helper",
"butane_test_macros",
"example",
"examples/custom_pg",
"examples/newtype",
"examples/getting_started",
"examples/getting_started_async",
"examples/reserved-words",
"trybuild_tests",
]
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Electron100/butane"
version = "0.8.1"
rust-version = "1.80.0"
[workspace.dependencies]
async-trait = "0.1"
butane = { version = "0.8", path = "butane" }
butane_cli = { path = "butane_cli" }
butane_core = { version = "0.8", path = "butane_core" }
butane_codegen = { version = "0.8", path = "butane_codegen" }
butane_test_helper = { path = "butane_test_helper", default-features = false }
butane_test_macros = { path = "butane_test_macros" }
cfg-if = "1"
chrono = { version = "0.4.25", default-features = false, features = [
"serde",
"std",
] }
crossbeam-channel = "0.5"
deadpool = "0.12"
desynt = "0.1"
env_logger = "0.11"
expectorate = "1.1"
fake = "4.2"
log = "0.4"
maybe-async-cfg = { version = "0.2.5", default-features = false }
nonempty = "0.12"
phf = { version = "0.13", features = ['macros'] }
paste = { package = "pastey", version = "0.1.1" }
postgres-native-tls = "0.5"
pretty_assertions = "1.4"
proc-macro2 = { version = "1.0", default-features = false }
quote = { version = "1.0", default-features = false }
r2d2 = "0.8"
rand = "0.9"
rusqlite = { version = "0.37", default-features = false }
serde = { version = "1.0", default-features = false }
serde_json = "1.0"
sqlparser = "0.59"
syn = { version = "2", features = ["extra-traits", "full"] }
tempfile = "3.10"
test-log = { version = "0.2", features = ["log", "trace"] }
thiserror = "2.0"
tokio = { version = "1" }
tokio-postgres = "0.7"
tokio-test = { version = "0.4" }
turso = "0.3"
url = "2.5"
uuid = "1.2"
[workspace.metadata.release]
allow-branch = ["master"]
push = false