-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (51 loc) · 1.28 KB
/
Cargo.toml
File metadata and controls
58 lines (51 loc) · 1.28 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
[package]
name = "baml_cli"
version = { workspace = true }
publish = false
authors = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
homepage = { workspace = true }
documentation = { workspace = true }
repository = { workspace = true }
license = { workspace = true }
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
baml_fmt = { workspace = true }
baml_lsp_server = { workspace = true }
baml_project = { workspace = true }
bex_vm = { workspace = true }
bex_vm_types = { workspace = true }
anyhow = { workspace = true }
clap = { workspace = true, features = [ "color", "env" ] }
clap-cargo = { workspace = true }
ctrlc = { workspace = true }
indexmap = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
walkdir = { workspace = true }
[features]
default = [ "native-tls" ]
native-tls = [ "baml_lsp_server/native-tls" ]
rustls = [ "baml_lsp_server/rustls" ]
defaults = [ ]
internal = [ ]
skip-integ-tests = [ ]
# [dev-dependencies]
# assert_cmd = "2"
# console_log = "1"
# dissimilar = "1.0.4"
# expect-test = "1.1.0"
# indoc.workspace = true
# either = "1.8.1"
# rstest = "0.22.0"
# walkdir = "2.5.0"
# wasm-logger = "0.2.0"
[[bin]]
name = "baml-cli"
path = "src/main.rs"
[package.metadata.ci]
wasm_support = false