Skip to content

Commit

Permalink
added workspace metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolasHai committed Jul 26, 2023
1 parent 73a48b5 commit ed4637e
Show file tree
Hide file tree
Showing 8 changed files with 42 additions and 17 deletions.
14 changes: 7 additions & 7 deletions Cargo.Bazel.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"checksum": "2c1439d8a6f5e5e947910f79f08a6957329dd8faa28fd090d90b8fee05d5fb05",
"checksum": "7097bb641d9d3227ef5d56759d251412990214259daefc4d4d7491c96273659a",
"crates": {
"addr2line 0.20.0": {
"name": "addr2line",
Expand Down Expand Up @@ -5076,7 +5076,7 @@
},
"version": "0.1.0"
},
"license": null
"license": "Apache-2.0"
},
"icrc1-test-env-replica 0.1.0": {
"name": "icrc1-test-env-replica",
Expand Down Expand Up @@ -5139,7 +5139,7 @@
},
"version": "0.1.0"
},
"license": null
"license": "Apache-2.0"
},
"icrc1-test-env-state-machine 0.1.0": {
"name": "icrc1-test-env-state-machine",
Expand Down Expand Up @@ -5194,7 +5194,7 @@
},
"version": "0.1.0"
},
"license": null
"license": "Apache-2.0"
},
"icrc1-test-replica 0.1.0": {
"name": "icrc1-test-replica",
Expand Down Expand Up @@ -5240,7 +5240,7 @@
"edition": "2018",
"version": "0.1.0"
},
"license": null
"license": "Apache-2.0"
},
"icrc1-test-runner 0.1.0": {
"name": "icrc1-test-runner",
Expand Down Expand Up @@ -5284,7 +5284,7 @@
"edition": "2018",
"version": "0.1.0"
},
"license": null
"license": "Apache-2.0"
},
"icrc1-test-suite 0.1.0": {
"name": "icrc1-test-suite",
Expand Down Expand Up @@ -5326,7 +5326,7 @@
"edition": "2018",
"version": "0.1.0"
},
"license": null
"license": "Apache-2.0"
},
"idna 0.2.3": {
"name": "idna",
Expand Down
9 changes: 5 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ tempfile = "3.3"
tokio = { version = "1.20.1", features = ["macros"] }

[workspace.package]
version = "0.1.0"
authors = ["Nice Folks"]
description = "A short description of my package"
documentation = "https://example.com/bar"
authors = ["DFINITY Stiftung <[email protected]>"]
edition = "2018"
repository = "https://github.com/dfinity/ICRC-1"
rust-version = "1.31.0"
license = "Apache-2.0"
6 changes: 5 additions & 1 deletion test/env/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "icrc1-test-env"
edition = "2018"
version = "0.1.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }

[lib]
path = "lib.rs"
Expand Down
6 changes: 5 additions & 1 deletion test/env/replica/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "icrc1-test-env-replica"
edition = "2018"
version = "0.1.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }

[lib]
path = "lib.rs"
Expand Down
6 changes: 5 additions & 1 deletion test/env/state-machine/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "icrc1-test-env-state-machine"
edition = "2018"
version = "0.1.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }

[lib]
path = "lib.rs"
Expand Down
6 changes: 5 additions & 1 deletion test/replica/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "icrc1-test-replica"
version = "0.1.0"
edition = "2018"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }

[lib]
path = "lib.rs"
Expand Down
6 changes: 5 additions & 1 deletion test/runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "icrc1-test-runner"
edition = "2018"
version = "0.1.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }

[[bin]]
name = "runner"
Expand Down
6 changes: 5 additions & 1 deletion test/suite/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
[package]
name = "icrc1-test-suite"
edition = "2018"
version = "0.1.0"
authors = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
rust-version = { workspace = true }
repository = { workspace = true }

[lib]
path = "lib.rs"
Expand Down

0 comments on commit ed4637e

Please sign in to comment.