Skip to content

Commit

Permalink
Merge pull request #1008 from creusot-rs/update-tomls
Browse files Browse the repository at this point in the history
Update the tomls
  • Loading branch information
xldenis authored May 20, 2024
2 parents 7feb3de + 496c0a7 commit 8f1e3ec
Show file tree
Hide file tree
Showing 10 changed files with 40 additions and 28 deletions.
14 changes: 7 additions & 7 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion cargo-creusot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
name = "cargo-creusot"
version = "0.1.0"
edition = "2021"
description = "Provides contracts and logic helpers for Creusot"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
serde_json = { version = "1.0" }
toml = { version = "0.5.8" }
env_logger = "*"
env_logger = "0.10"
serde = { version = "1.0", features = ["derive"] }
creusot-args = {path = "../creusot-args"}
creusot-setup = {path = "../creusot-setup"}
Expand Down
7 changes: 5 additions & 2 deletions creusot-contracts-dummy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
[package]
name = "creusot-contracts-dummy"
version = "0.2.0"
version = "0.1.0"
edition = "2021"
homepage = "https://github.com/creusot-rs/creusot"
license = "LGPL-2.1-or-later"
description = "Dummy proc macros for creusot-contracts"

[lib]
proc-macro = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
quote = "*"
quote = "1.0.35"
11 changes: 7 additions & 4 deletions creusot-contracts-proc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
[package]
name = "creusot-contracts-proc"
version = "0.2.0"
version = "0.1.0"
authors = ["Xavier Denis <[email protected]>"]
edition = "2018"
homepage = "https://github.com/creusot-rs/creusot"
license = "LGPL-2.1-or-later"
description = "Proc macro crate for creusot-contracts"

[lib]
proc-macro = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
quote = "*"
uuid = { version = "*", features = ["v4"] }
pearlite-syn = { version = "*", path = "../pearlite-syn", features = ["full"] }
quote = "1.0.35"
uuid = { version = "1.3", features = ["v4"] }
pearlite-syn = { version = "0.1", path = "../pearlite-syn", features = ["full"] }
syn = { version = "2.0.15"}
proc-macro2 = "1.0.29"
8 changes: 5 additions & 3 deletions creusot-contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
[package]
name = "creusot-contracts"
version = "0.2.0"
version = "0.1.0"
authors = ["Xavier Denis <[email protected]>"]
edition = "2018"
homepage = "https://github.com/creusot-rs/creusot"
license = "LGPL-2.1-or-later"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
creusot-contracts-proc = { path = "../creusot-contracts-proc", version = "*" }
creusot-contracts-dummy = { path = "../creusot-contracts-dummy", version = "*" }
creusot-contracts-proc = { path = "../creusot-contracts-proc", version = "0.1.0" }
creusot-contracts-dummy = { path = "../creusot-contracts-dummy", version = "0.1.0" }
num-rational = "0.3.2"

[features]
Expand Down
2 changes: 1 addition & 1 deletion creusot-metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "creusot-metadata"
version = "0.2.0"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions creusot-rustc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition = "2021"

[dependencies]
serde_json = { version = "1.0" }
creusot = { path = "../creusot", version = "*" }
creusot = { path = "../creusot", version = "0.1" }
toml = "0.5.8"
env_logger = "*"
env_logger = "0.10"
serde = { version = "1.0", features = ["derive"] }
creusot-args = {path = "../creusot-args"}
5 changes: 3 additions & 2 deletions creusot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[package]
name = "creusot"
version = "0.2.0"
version = "0.1.0"
authors = ["Xavier Denis <[email protected]>"]
edition = "2021"
license = "LGPL-2.1-or-later"

[dependencies]
itertools = "*"
itertools = "0.10"
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
heck = "0.4"
Expand Down
8 changes: 5 additions & 3 deletions pearlite-syn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
[package]
name = "pearlite-syn"
version = "0.2.0"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/creusot-rs/creusot"
description = "A syn parser for the Pearlite specification language"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

syn = { version = "2.0.15", features = ["full", "extra-traits", "visit-mut"] }
proc-macro2 = "*"
quote = "*"
proc-macro2 = "1.0.76"
quote = "1.0.35"

[features]

Expand Down
6 changes: 3 additions & 3 deletions why3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "why3"
version = "0.2.0"
version = "0.1.0"
authors = ["Xavier Denis <[email protected]>"]
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]

itertools = "*"
itertools = "0.10"
pretty = "0.11"
indexmap = "1.2.0"
serde = { version = "1.0", optional = true, features = ["derive"] }
num = "*"
num = "0.4"
serde_json = "1.0.107"

[dev-dependencies]
Expand Down

0 comments on commit 8f1e3ec

Please sign in to comment.