-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (57 loc) · 1.74 KB
/
Cargo.toml
File metadata and controls
61 lines (57 loc) · 1.74 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
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Arthur Vercruysse <arthur.vercruysse@outlook.com>"]
license = "MIT"
repository = "https://github.com/semanticweblanguageserver/swls"
homepage = "https://github.com/semanticweblanguageserver/swls"
[workspace.dependencies]
async-trait = "0.1.89"
bevy_ecs = { version = "0.17.3", default-features = false, features = [
"multi_threaded",
] }
bevy_tasks = { version = "0.17.3", features = ["multi_threaded"] }
chumsky = "0.9.0"
derive_more = { version = "2", features = ["as_ref", "deref", "deref_mut", "is_variant"] }
futures = { version = "0.3.31", features = ["alloc", "executor"], default-features = false }
lazy_static = "1.5"
logos = "0.15.1"
reqwest = { version = "0.12", features = ["blocking", "json"] }
ropey = "1.6.1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.145"
similar = "2.7"
sophia_api = "0.9.0"
sophia_iri = "0.9.0"
sophia_turtle = "0.9.0"
tracing = "0.1"
tower-lsp = { version = "0.19.0", default-features = false, features = [
] }
swls-lov = { path = "lov", version = "0.1.0" }
swls-core = { path = "core", version = "0.1.0" }
swls-token-helpers = { path = "swls-token-helpers", version = "0.1.0" }
swls-lang-turtle = { path = "lang-turtle", version = "0.1.0" }
swls-lang-jsonld = { path = "lang-jsonld", version = "0.1.0" }
swls-lang-sparql = { path = "lang-sparql", version = "0.1.0" }
[workspace]
default-members = [
"core",
"lov",
"lang-turtle",
"lang-jsonld",
"lang-sparql",
"swls-token-helpers",
"swls",
]
members = [
"core",
"lov",
"lang-turtle",
"lang-jsonld",
"lang-sparql",
"swls",
"test-utils",
"swls-token-helpers",
"conformance",
]
resolver = "2"