-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (46 loc) · 1.34 KB
/
Cargo.toml
File metadata and controls
53 lines (46 loc) · 1.34 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
# Copyright 2024-2026 Andrey Vasilevsky <anvanster@gmail.com>
# SPDX-License-Identifier: Apache-2.0
[workspace]
resolver = "2"
members = [
"crates/codegraph",
"crates/codegraph-parser-api",
"crates/codegraph-python",
"crates/codegraph-rust",
"crates/codegraph-typescript",
"crates/codegraph-go",
"crates/codegraph-c",
"crates/codegraph-php",
"crates/codegraph-java",
"crates/codegraph-kotlin",
"crates/codegraph-ruby",
"crates/codegraph-csharp",
"crates/codegraph-cpp",
"crates/codegraph-swift",
"crates/codegraph-tcl",
"crates/codegraph-verilog",
"crates/codegraph-cobol",
"crates/codegraph-fortran",
]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/anvanster/codegraph"
authors = ["Andrey Vasilevsky <anvanster@gmail.com>"]
[workspace.dependencies]
# Shared dependencies across all crates
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
rocksdb = "0.22"
log = "0.4"
uuid = { version = "1.0", features = ["v4", "serde"] }
# Internal crates
codegraph = { path = "crates/codegraph", version = "0.2.0", default-features = false }
codegraph-parser-api = { path = "crates/codegraph-parser-api", version = "0.2.1" }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
[profile.bench]
inherits = "release"