-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (38 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
42 lines (38 loc) · 1.47 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
[package]
name = "llm-review-sdk"
version = "0.1.0"
edition = "2021"
authors = ["Platform Network"]
license = "Apache-2.0"
description = "SDK for LLM-based code review and quality assessment"
repository = "https://github.com/PlatformNetwork/llm-review-sdk"
keywords = ["llm", "review", "code-quality", "sdk", "bittensor"]
categories = ["development-tools", "api-clients"]
[features]
default = ["std"]
std = ["thiserror", "serde/std", "serde_json/std", "chrono", "uuid"]
async = ["tokio", "reqwest"]
plagiarism = ["plagiarism-sdk", "std"]
[dependencies]
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = { version = "1.0", default-features = false }
tokio = { version = "1.0", features = ["rt-multi-thread", "macros"], optional = true }
reqwest = { version = "0.11", features = ["json"], optional = true }
axum = "0.7"
tower-service = "0.3"
tower-http = { version = "0.5", features = ["cors"] }
async-trait = "0.1"
thiserror = { version = "2.0", optional = true }
chrono = { version = "0.4", features = ["serde"], optional = true }
uuid = { version = "1.0", features = ["v4", "serde"], optional = true }
schemars = "0.8"
plagiarism-sdk = { path = "../plagiarism-sdk", optional = true }
zip = { version = "0.6", default-features = false, features = ["deflate"] }
walkdir = "2.4"
sha2 = "0.10"
base64 = "0.21"
[dev-dependencies]
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tempfile = "3.27"
[package.metadata.docs.rs]
all-features = true