Skip to content

Commit b673385

Browse files
authored
Merge pull request #3 from informalsystems/erick/metadata
Preparing Cargo.toml and README files for release
2 parents 06f6573 + 248794c commit b673385

File tree

4 files changed

+68
-17
lines changed

4 files changed

+68
-17
lines changed

Cargo.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
[workspace]
2-
members = [ "connect" , "connect-macros"]
2+
members = ["connect" , "connect-macros"]
33
resolver = "3"
44

5+
[workspace.package]
6+
version = "0.1.0"
7+
edition = "2024"
8+
license = "Apache-2.0"
9+
repository = "https://github.com/informalsystems/quint-connect"
10+
homepage = "https://github.com/informalsystems/quint-connect"
11+
documentation = "https://docs.rs/quint-connect"
12+
categories = ["development-tools::testing", "simulation"]
13+
keywords = ["quint", "model-based-testing", "testing", "formal-methods", "verification"]
14+
authors = ["Informal Systems Inc. <hello@informal.systems>"]
15+
516
[workspace.dependencies]
6-
quint-connect-macros = { path = "connect-macros" }
17+
quint-connect-macros = { version = "0.1.0", path = "connect-macros" }

connect-macros/Cargo.toml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
[package]
2-
name = "quint-connect-macros"
3-
version = "0.1.0"
4-
edition = "2024"
2+
name = "quint-connect-macros"
3+
readme = "README.md"
4+
description = "Procedural macros used by the `quint-connect` crate."
5+
6+
version = { workspace = true }
7+
edition = { workspace = true }
8+
license = { workspace = true }
9+
repository = { workspace = true }
10+
homepage = { workspace = true }
11+
documentation = { workspace = true }
12+
categories = { workspace = true }
13+
keywords = { workspace = true }
14+
authors = { workspace = true }
515

616
[lib]
717
proc-macro = true
818

919
[dependencies]
1020
proc-macro2 = "1.0"
11-
quote = "1.0"
12-
syn = { version = "2.0", features = ["full"] }
21+
quote = "1.0"
22+
syn = { version = "2.0", features = ["full"] }

connect-macros/README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Quint Connect Macros
2+
3+
Procedural macros used by the `quint-connect` crate.
4+
5+
## License
6+
7+
Copyright 2025 Informal Systems Inc.
8+
9+
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
10+
this file except in compliance with the License. You may obtain a copy of the
11+
License at
12+
13+
```text
14+
http://www.apache.org/licenses/LICENSE-2.0
15+
```
16+
17+
Unless required by applicable law or agreed to in writing, software distributed
18+
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
19+
CONDITIONS OF ANY KIND, either express or implied. See the License for the
20+
specific language governing permissions and limitations under the License.

connect/Cargo.toml

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,29 @@
11
[package]
2-
name = "quint-connect"
3-
version = "0.1.0"
4-
edition = "2024"
2+
name = "quint-connect"
3+
readme = "../README.md"
4+
description = "A model-based testing framework that connects Quint specifications with Rust applications"
5+
6+
version = { workspace = true }
7+
edition = { workspace = true }
8+
license = { workspace = true }
9+
repository = { workspace = true }
10+
homepage = { workspace = true }
11+
documentation = { workspace = true }
12+
categories = { workspace = true }
13+
keywords = { workspace = true }
14+
authors = { workspace = true }
515

616
[dependencies]
717
quint-connect-macros = { workspace = true }
818

9-
anyhow = "1.0"
10-
itf = "0.4"
11-
serde = "1.0"
19+
anyhow = "1.0"
20+
itf = "0.4"
21+
serde = "1.0"
1222
serde_json = "1.0"
13-
tempfile = "3.0"
14-
colored = "3.0"
15-
rand = "0.9"
16-
similar = "2.7"
23+
tempfile = "3.0"
24+
colored = "3.0"
25+
rand = "0.9"
26+
similar = "2.7"
1727

1828
[dev-dependencies]
1929
trybuild = { version = "1.0.114", features = ["diff"] }

0 commit comments

Comments
 (0)