forked from braintrustdata/bt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
81 lines (74 loc) · 2.3 KB
/
Copy pathCargo.toml
File metadata and controls
81 lines (74 loc) · 2.3 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
75
76
77
78
79
80
81
[package]
name = "bt"
version = "0.4.0"
edition = "2021"
rust-version = "1.86.0"
authors = ["Braintrust engineering <eng@braintrust.dev>"]
description = "The Braintrust command line interface"
license = "Apache-2.0"
repository = "https://github.com/braintrustdata/bt"
[dependencies]
actix-web = "4.11.0"
anyhow = "1.0.89"
backoff = { version = "0.4.0", features = ["tokio"] }
braintrust-sdk-rust = { git = "https://github.com/braintrustdata/braintrust-sdk-rust", rev = "c8c7c7a8d9189164584adef71449a26d4ae8be2b" }
clap = { version = "4.5.20", features = ["derive", "env"] }
crossterm = "0.28.1"
futures-util = "0.3.31"
indicatif = "0.17.8"
ratatui = "0.29.0"
reqwest = { version = "0.12.7", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
sha2 = "0.10.8"
strip-ansi-escapes = "0.2.0"
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "process", "net", "signal"] }
unicode-width = "0.1.13"
dialoguer = { version = "0.11", features = ["fuzzy-select"] }
dotenvy = "0.15"
open = "5"
regex = "1"
urlencoding = "2"
lingua = { git = "https://github.com/braintrustdata/lingua", rev = "3c79f2c427d12d3e2fe104910ef3c0768ad83770" }
comfy-table = "7.2.2"
base64 = "0.22"
oauth2 = { version = "4.4", default-features = false, features = ["reqwest", "rustls-tls"] }
getrandom = "0.3"
chrono = { version = "0.4.40", features = ["clock"] }
dirs = "5"
pathdiff = "0.2.3"
glob = "0.3"
flate2 = "1.1.2"
[profile.dist]
inherits = "release"
lto = "thin"
[workspace]
members = ["."]
[workspace.metadata.dist]
cargo-dist-version = "0.30.3"
ci = "github"
create-release = true
pr-run-mode = "plan"
allow-dirty = ["ci"]
[package.metadata.dist]
installers = ["shell", "powershell"]
targets = [
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"x86_64-unknown-linux-musl",
"x86_64-pc-windows-msvc",
]
unix-archive = ".tar.gz"
windows-archive = ".zip"
install-path = ["$XDG_BIN_HOME/", "$XDG_DATA_HOME/../bin", "~/.local/bin"]
install-updater = true
install-success-msg = ""
[dev-dependencies]
tempfile = "3"
assert_cmd = "2.2.0"
predicates = "3.1.4"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_Storage_FileSystem"] }