-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
53 lines (46 loc) · 1.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[workspace]
resolver = "2"
members = [
"baml-lib/*",
]
default-members = [
"baml-lib/*",
]
[workspace.dependencies]
anyhow = "1.0"
askama = "0.12.1"
base64 = "0.22.1"
cfg-if = "1.0.0"
dashmap = "5.5.3"
derive_builder = "0.20.0"
either = "1.8.1"
env_logger = "0.11.3"
futures = { version = "0.3.30", features = ["executor"] }
log = "0.4.20"
indexmap = { version = "2.1.0", features = ["serde"] }
indoc = "2.0.1"
instant = "0.1"
regex = "1.10.4"
serde_json = { version = "1", features = ["float_roundtrip", "preserve_order"] }
serde = { version = "1", features = ["derive"] }
static_assertions = "1.1.0"
strum = { version = "0.26.2", features = ["derive"] }
strum_macros = "0.26.2"
walkdir = "2.5.0"
web-time = "1.1.0"
baml-types = { path = "baml-lib/baml-types" }
internal-baml-core = { path = "baml-lib/baml-core" }
internal-baml-jinja = { path = "baml-lib/jinja" }
[workspace.package]
version = "0.40.1"
authors = ["Boundary <[email protected]>"]
description = "BAML Toolchain"
license-file = "LICENSE"
[workspace.metadata.workspaces]
allow_branch = "canary"
[profile.dev]
lto = false
[profile.dev2]
inherits = "dev"
[profile.release]
lto = true