12 lines
260 B
TOML
12 lines
260 B
TOML
[package]
|
|
name = "hello_world" # the name of the package
|
|
version = "0.1.0" # the current version, obeying semver
|
|
authors = ["Alice <a@example.com>", "Bob <b@example.com>"]
|
|
edition = '2018'
|
|
#build = "hello.rs"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
rand = "0.7.3"
|
|
|