Skip to content

Commit

Permalink
Add license information to the crates. (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
larry-aptos authored Sep 19, 2024
1 parent 3970abd commit 9ecd252
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 4 deletions.
10 changes: 9 additions & 1 deletion rust/instrumented-channel/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "instrumented-channel"
version = "0.1.0"
edition = "2021"

# Workspace inherited keys
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }

[dependencies]
delegate = { workspace = true }
Expand Down
11 changes: 9 additions & 2 deletions rust/sdk-examples/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
[package]
name = "sdk-examples"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

# Workspace inherited keys
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }

[dependencies]
ahash = { workspace = true }
Expand Down
10 changes: 9 additions & 1 deletion rust/sdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
[package]
name = "aptos-indexer-processor-sdk"
version = "0.1.0"
edition = "2021"

# Workspace inherited keys
authors = { workspace = true }
edition = { workspace = true }
homepage = { workspace = true }
license = { workspace = true }
publish = { workspace = true }
repository = { workspace = true }
rust-version = { workspace = true }

[dependencies]
anyhow = { workspace = true }
Expand Down

0 comments on commit 9ecd252

Please sign in to comment.