-
Notifications
You must be signed in to change notification settings - Fork 404
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.14 KB
/
Cargo.toml
File metadata and controls
47 lines (43 loc) · 1.14 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
[package]
name = "ruby_ffi"
version = "0.1.0"
edition = "2021"
publish = false
[lib]
# This controls the name of the generated .so file
crate-type = ["cdylib"]
[dependencies]
anyhow.workspace = true
baml-cli.workspace = true
baml-runtime = { path = "../../../baml-runtime", features = ["internal"] }
baml-types.workspace = true
baml-log.workspace = true
base64.workspace = true
env_logger.workspace = true
futures.workspace = true
indexmap.workspace = true
jsonish = { path = "../../../baml-lib/jsonish" }
log.workspace = true
magnus = { version = "0.7.1", features = ["rb-sys"] }
# Must be kept in sync with ../../Gemfile
rb-sys = { version = "0.9.111", features = [
"global-allocator",
"bindgen-rbimpls",
"bindgen-deprecated-types",
"stable-api",
"stable-api-compiled-fallback",
] }
serde.workspace = true
serde_json.workspace = true
serde_magnus = { version = "0.9.0" }
tokio = { version = "1", features = ["full"] }
tracing-subscriber = { version = "0.3.18", features = [
"json",
"env-filter",
"valuable",
] }
[dev-dependencies.magnus]
version = "0.7.1"
features = ["rb-sys", "embed"]
[build-dependencies]
rb-sys-env = { version = "0.2.2" }