releng: prepare the publishing

This commit is contained in:
moznion
2020-12-12 13:37:05 +09:00
parent 7633e2a49c
commit 2855b42cb2
4 changed files with 13 additions and 7 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package] [package]
name = "code-generator" name = "code-generator"
version = "0.1.0" version = "0.0.1"
edition = "2018" edition = "2018"
license-file = "../LICENSE" license-file = "../LICENSE"
publish = false publish = false
+2 -2
View File
@@ -1,11 +1,11 @@
[package] [package]
name = "e2e-test" name = "e2e-test"
version = "0.1.0" version = "0.0.1"
edition = "2018" edition = "2018"
license-file = "../LICENSE" license-file = "../LICENSE"
publish = false publish = false
[dependencies] [dependencies]
radius = { version = "0.1.0", path = "../radius" } radius = { version = "0.0.1", path = "../radius" }
tokio = { version = "0.3.5", features = ["signal", "net"] } tokio = { version = "0.3.5", features = ["signal", "net"] }
async-trait = "0.1.42" async-trait = "0.1.42"
+2 -2
View File
@@ -1,13 +1,13 @@
[package] [package]
name = "examples" name = "examples"
version = "0.1.0" version = "0.0.1"
publish = false publish = false
edition = "2018" edition = "2018"
license-file = "../LICENSE" license-file = "../LICENSE"
repository = "https://github.com/moznion/radius-rs" repository = "https://github.com/moznion/radius-rs"
[dev-dependencies] [dev-dependencies]
radius = { version = "0.1.0", path = "../radius" } radius = { version = "0.0.1", path = "../radius" }
log = "0.4.11" log = "0.4.11"
env_logger = "0.8.2" env_logger = "0.8.2"
tokio = { version = "0.3.4", features = ["signal", "net"] } tokio = { version = "0.3.4", features = ["signal", "net"] }
+8 -2
View File
@@ -1,11 +1,14 @@
[package] [package]
name = "radius" name = "radius"
version = "0.1.0" version = "0.0.1"
authors = ["moznion <moznion@gmail.com>"] authors = ["moznion <moznion@gmail.com>"]
edition = "2018" edition = "2018"
description = "An async/await native implementation of the RADIUS server and client for Rust."
license-file = "../LICENSE" license-file = "../LICENSE"
readme = "../README.md"
repository = "https://github.com/moznion/radius-rs" repository = "https://github.com/moznion/radius-rs"
keywords = ["radius"] categories = ["network-programming"]
keywords = ["radius", "async"]
[dependencies] [dependencies]
md5 = "0.7.0" md5 = "0.7.0"
@@ -13,3 +16,6 @@ chrono = "0.4"
rand = "0.7.3" rand = "0.7.3"
num_enum = "0.5.1" num_enum = "0.5.1"
thiserror = "1.0" thiserror = "1.0"
log = "0.4.11"
tokio = { version = "0.3.5", features = ["full"] }
async-trait = "0.1.42"