-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 946 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 946 Bytes
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
[workspace]
resolver = "2"
members = [
"daft",
"daft-derive",
]
[workspace.package]
edition = "2021"
repository = "https://github.com/oxidecomputer/daft"
rust-version = "1.81.0"
license = "MIT OR Apache-2.0"
keywords = ["diff", "difference", "semantic-diff", "structural-diff"]
[workspace.lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ["cfg(doc_cfg)"] }
[workspace.dependencies]
datatest-stable = "0.3.2"
# Do not define a version for the daft-derive -> daft dependency, so it gets
# stripped from daft-derive's Cargo.toml.
daft = { path = "daft" }
# Use a fixed version number for daft-derive, so daft and daft-derive are always
# in sync -- the two are released in lockstep.
daft-derive = { version = "=0.1.5", path = "daft-derive" }
expectorate = "1.1.0"
newtype-uuid = "1.2.1"
oxnet = "0.1.0"
paste = "1.0.15"
prettyplease = "0.2.29"
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
trybuild = "1.0.103"
uuid = "1.12.0"